Explore >> Select a destination


You are here

ukiahsmith.com
| | xdg.me
2.0 parsecs away

Travel
| | Usage and implementation of strum, a Go library for unmarshaling text.
| | brunoscheufler.com
1.7 parsecs away

Travel
| | While Go doesn't come with the typical language concepts for inheritance-based type hierarchies? it provides a powerful concept to reuse parts from other interfaces and structs, using embedding....
| | attilaolah.eu
1.2 parsecs away

Travel
| | Incidentally, decoding JSON data (or really, almost any data structure) isreally easy in Go (golang). We simply call json.Unmarshal(...) andboom! We have nice data structures.
| | ukiahsmith.com
5.8 parsecs away

Travel
| Often times we need to unmarshal upstream data with unique constraints. Such as custom data types, or custom parsing of specific formats. Using the standard library could be impractical, and handling long structs manually can be tedious; however there is an alternative.