GoLang: encoding

Package encoding provide capabilities to convert data to and from byte-level and textual representations. encoding/gob encoding/json, and encoding/xml The gob is Go’s format for serializing and deserializing. The gob was tailored for communicating between two servers written in Go. Only exported fields are encoded; zero values are not taken into account Package gob manages streams of gobs – binary values … Continue reading GoLang: encoding