summaryrefslogtreecommitdiff
path: root/src/encoding
Commit message (Expand)AuthorAgeFilesLines
* all: use reflect.{Pointer,PointerTo}Cuong Manh Le2021-10-2614-59/+59
* encoding/base64: add examples for Encode/Decode1809092021-10-191-0/+23
* encoding/gob: follow documented io.EOF semanticsDaniel Martí2021-10-112-0/+72
* all: use bytes.Cut, strings.CutRuss Cox2021-10-065-52/+36
* encoding/base32: Add examples for Encode/Decodejiahua wang2021-09-271-0/+23
* encoding/xml: truncate generic type namesKeith Randall2021-09-211-0/+4
* encoding/gob: optimize decoding of slicekorzhao2021-09-072-2/+8
* encoding/gob: marshal maps using reflect.Value.MapRangekorzhao2021-09-072-5/+55
* encoding/gob: optimize decoding of []byteJoe Tsai2021-08-272-1/+9
* encoding/csv: add FieldPos methodRoger Peppe2021-04-292-395/+585
* all: remove redundant spaces before . and ,Yury Smolsky2021-04-202-2/+2
* encoding/xml: replace comments inside directives with a spaceFilippo Valsorda2021-03-152-6/+13
* encoding/xml: handle leading, trailing, or double colons in namesFilippo Valsorda2021-03-152-2/+59
* encoding/json: fix package shadowing in MarshalIndent exampleAriel Mashraki2021-03-141-2/+2
* encoding/gob: ensure "duplicate type received" decoder errors surface upAman Karmani2021-03-132-0/+28
* all: use HTML5 br tagsJohn Bampton2021-03-132-2/+2
* encoding/xml: prevent infinite loop while decodingKatie Hockman2021-03-102-31/+92
* encoding/binary: limit bytes read by Uvarint to <= 10Emmanuel T Odeke2021-03-082-4/+66
* encoding/json: marshal maps using reflect.Value.MapRangeMeng Zhuo2021-03-052-17/+40
* reflect: add Method.IsExported and StructField.IsExported methodsJoe Tsai2021-02-254-6/+5
* encoding/json: reduce allocated space in UnmarshalJosh Bleecher Snyder2021-02-241-20/+31
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-206-0/+6
* encoding/asn1: document unmarshaling behavior for IMPLICIT string fieldsEric Chiang2021-01-121-0/+9
* encoding/json: revert "add "json: " prefix to SyntaxError messages"Kevin Burke2020-12-011-1/+1
* encoding/asn1: optimize asn1.UnmarshalDmitrii Okunev2020-11-092-33/+45
* encoding/xml: fix reserved namespace check to be case-insensitiveIan Lance Taylor2020-10-212-2/+29
* encoding/json: add "json: " prefix to SyntaxError messagesKevin Burke2020-10-211-1/+1
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-209-34/+28
* encoding/asn1: clarify use of SET suffixRoland Bracewell Shoemaker2020-10-051-3/+4
* encoding/asn1: error instead of panic on invalid value to UnmarshalKimMachineGun2020-09-292-3/+47
* encoding/json: added docs to UnsupportedValueErrorCarlos Alexandro Becker2020-09-251-0/+2
* encoding/json: detect cyclic maps and sliceslujjjh2020-09-242-1/+53
* encoding/json: allow semicolon in field key / struct tagSean Liao2020-09-242-3/+3
* encoding/binary: remove TODO in Write and add benchmarkszhouzhongyuan2020-09-232-1/+25
* Revert "encoding/json: implement Is on SyntaxError"Damien Neil2020-09-142-15/+0
* Revert "encoding/json: implement Is on all errors"Damien Neil2020-09-144-84/+1
* encoding/json: implement Is on all errorsCarlos Alexandro Becker2020-09-134-1/+84
* encoding/json: implement Is on SyntaxErrorCarlos Alexandro Becker2020-09-122-0/+15
* encoding/binary: replace constant literals with named constant (cleanup)Robert Griesemer2020-08-251-2/+2
* encoding/asn1: speed up marshal by reducing allocationsMartin Möhrmann2020-08-181-1/+10
* encoding/binary: read at most MaxVarintLen64 bytes in ReadUvarintKatie Hockman2020-08-062-8/+15
* Revert "encoding/json: don't reuse slice elements when decoding"Daniel Martí2020-07-022-36/+19
* Revert "encoding/xml: fix reserved namespace check to be case-insensitive"Ian Lance Taylor2020-06-292-29/+2
* encoding/json: revert "avoid work when unquoting strings, take 2"Daniel Martí2020-06-152-42/+48
* encoding/xml: only initialize nil struct fields when decodingDaniel Martí2020-05-284-15/+50
* Revert "encoding/json: reuse values when decoding map elements"Daniel Martí2020-05-282-112/+45
* encoding/asn1: document what Unmarshal returns in restRoland Shoemaker2020-05-231-0/+6
* encoding/json: reuse values when decoding map elementsDaniel Martí2020-05-082-45/+112
* encoding/json: don't mangle strings in an edge case when decodingDaniel Martí2020-05-082-2/+36
* encoding/json: properly encode strings with ",string" againDaniel Martí2020-05-083-37/+69