Go Package encoding: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
* https://golang.org/pkg/encoding/
* https://golang.org/pkg/encoding/
* https://golang.org/pkg/encoding/gob
* https://golang.org/pkg/encoding/gob
* https://golang.org/pkg/encoding/json


=Internal=
=Internal=

Revision as of 23:10, 1 April 2016

External

Internal

Overview

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".