aboutsummaryrefslogtreecommitdiff
path: root/unmarshal.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add dedicated Int and Uint typesSimon Ser2021-03-311-2/+2
* Panic when decode{Uint,Int,Float} are passed a wrong valueSimon Ser2021-03-311-0/+8
* Remove misleading docsSimon Ser2021-03-311-3/+0
* Expose UnmarshalBareReaderSimon Ser2021-03-311-3/+3
* Omit struct fields with a field tag of "-".Adnan Maolood2020-11-171-0/+6
* Configurable map & array size limitsTimofey2020-11-021-0/+8
* Reject invalid valuesTimofey2020-11-021-4/+4
* Cache encoding/decoding routinesTimofey2020-11-021-125/+236
* Add maximum message size limitDrew DeVault2020-06-221-7/+19
* Generalize union implementationDrew DeVault2020-06-221-6/+7
* Use uint for internal length encodingsDrew DeVault2020-06-221-2/+2
* Marshal, Unmarshal: implement uint & intDrew DeVault2020-06-221-9/+9
* marshal, unmarshal: add CanAddress guardDrew DeVault2020-06-211-2/+4
* Add Marshalable and Unmarshalable interfacesDrew DeVault2020-06-211-1/+12
* Further simplify union implementationDrew DeVault2020-06-211-1/+1
* Simplify union implementationDrew DeVault2020-06-211-36/+15
* Marshal, Unmarshal: implement unionsDrew DeVault2020-06-211-15/+57
* Implement MarshalDrew DeVault2020-06-211-7/+4
* Unmarshal: implement mapsDrew DeVault2020-06-201-0/+25
* Implement array & slice unmarshalingDrew DeVault2020-06-201-0/+32
* Unmarshal: rename unmarshalReaderDrew DeVault2020-06-201-2/+2
* Expand godocsDrew DeVault2020-06-201-1/+8
* Unmarshal: implement struct unmarshalingDrew DeVault2020-06-201-2/+17
* Unmarshal: implement optional<type>Drew DeVault2020-06-201-1/+17
* Add initial unmarshal implementationDrew DeVault2020-06-201-0/+90