summaryrefslogtreecommitdiff
path: root/src/encoding
Commit message (Expand)AuthorAgeFilesLines
* encoding/binary: add AppendVarint AppendUvarintJoe Tsai2022-04-152-0/+32
* encoding/pem: fix stack overflow in DecodeJulie Qiu2022-04-122-100/+100
* all: gofmt main repoRuss Cox2022-04-119-104/+136
* all: separate doc comment from //go: directivesRuss Cox2022-04-051-0/+1
* all: replace `` and '' with “ (U+201C) and ” (U+201D) in doc commentsRuss Cox2022-04-053-3/+3
* all: remove trailing blank doc comment linesRuss Cox2022-04-015-6/+0
* encoding/xml: expose decoder line and columnPatrick Gundlach2022-03-272-0/+48
* encoding/hex: implement Decode with a lookup tableeh-steve2022-03-111-23/+32
* encoding/xml: improve the test coverage, fix minor bugsIskander Sharipov2022-03-042-7/+168
* encoding/binary: add AppendByteOrderJoe Tsai2022-03-022-9/+178
* encoding/json: use reflect.Value.UnsafePointer over PointerJoe Tsai2022-03-021-3/+3
* encoding/xml: embedded reference to substruct causes XML marshaller to panic ...hopehook2022-02-202-1/+37
* all: add a handful of fuzz targetsRoland Shoemaker2022-01-131-0/+83
* Revert "all: add a handful of fuzz targets"Bryan Mills2022-01-121-83/+0
* all: add a handful of fuzz targetsRoland Shoemaker2022-01-121-0/+83
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-1338-303/+303
* encoding/xml: add generic encoding testKeith Randall2021-11-091-0/+5
* encoding: simplify some codeJosh Bleecher Snyder2021-11-023-9/+3
* all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor)Russ Cox2021-10-286-6/+0
* 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