|
You are here |
ukiahsmith.com | ||
| | | | |
xdg.me
|
|
| | | | | Usage and implementation of strum, a Go library for unmarshaling text. | |
| | | | |
brunoscheufler.com
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | 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. | ||