Go Package encoding: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 14: Line 14:


The package "json" provides support for encoding and decoding JSON.
The package "json" provides support for encoding and decoding JSON.
=JSON=
<font color=red>'''TODO''' github recipe</font>
<pre>
var as []*A
err = json.NewDecoder(file).Decode(&as)
</pre>

Revision as of 01:12, 3 April 2016

External

Internal

Overview

The package "gob" manages streams of gobs - binary values exchanged between an Encoder (transmitter) and a Decoder (receiver). A typical use is transporting arguments and results of remote procedure calls (RPCs) such as those provided by package "net/rpc".

The package "json" provides support for encoding and decoding JSON.

JSON

TODO github recipe

var as []*A

err = json.NewDecoder(file).Decode(&as)