summaryrefslogtreecommitdiff
path: root/src/bufio
Commit message (Expand)AuthorAgeFilesLines
* bufio: mention ErrFinalToken in SplitFunc documentationMatt Harden2021-04-301-1/+2
* bufio, bytes, strings: handle negative runes in WriteRuneDavid Benjamin2021-02-242-1/+16
* bufio: make string(int) conversion safersmasher1642020-11-281-1/+1
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-201-10/+9
* all: fix spelling mistakeslihaowei2020-08-181-1/+1
* bufio: test for exact error value in TestNegativeEOFReader and TestLargeReaderDmitri Shuralyov2020-06-171-6/+8
* bufio: optimize bufio.Reader.ReadString to avoid an allocation and copyAlex Gaynor2020-04-282-18/+66
* scan: for style, adjust code for bad scan read countsRob Pike2020-03-251-3/+4
* bufio: don't panic when Scanner sees an impossible Read countIan Lance Taylor2020-03-252-0/+59
* all: avoid string(i) where i has type intIan Lance Taylor2020-02-261-1/+1
* bufio: return the underlying error in ReadFrom if not nilCuong Manh Le2019-10-312-0/+29
* bufio: save error from underlying ReadFromCuong Manh Le2019-10-312-1/+23
* bufio: simplify bufio.Reader.ReadBytes to avoid an extra loop over a sliceAlex Gaynor2019-10-041-6/+4
* bufio: fix ExampleScanner_Bytes comment, add error checkIan Lance Taylor2019-06-251-1/+4
* bufio: add example for Scanner.Bytesguitarbum7222019-06-211-0/+10
* bufio: Reader.Read may return io.EOF even when it has data bufferedDaniel Cormier2019-06-202-0/+57
* bufio: Fix typo in scan.go documentationMickey Reiss2019-05-231-1/+1
* bufio: fix emptyFinalToken example to handle multiple ReadsAgniva De Sarker2019-03-021-0/+3
* bufio: document relationship between UnreadByte/UnreadRune and PeekBrad Fitzpatrick2019-01-081-4/+11
* bufio: make Reader.Peek invalidate UnreadsMartin Garton2018-11-132-0/+21
* bufio: put notes about len(p) togetherRuss Cox2018-11-131-2/+1
* bufio: fix indexes in TestWriterRyan Dahl2018-11-091-1/+1
* bufio: suggest io.ReadFull at (*Reader).ReadAlan Donovan2018-10-301-0/+2
* bufio: avoid rescanning buffer multiple times in ReadSliceandrius46692018-08-221-1/+5
* bufio: make Reader naming consistentnogoegst2018-08-201-1/+1
* bufio: clarify SplitFunc docs for nil tokenIan Lance Taylor2018-06-131-7/+12
* bufio: document ReadFrom/WriteTo calls to underlying methodsIan Lance Taylor2018-03-281-1/+5
* bufio: Use maxConsecutiveEmptyReads instead of 100Ryoichi KATO2017-11-141-4/+5
* bufio: add Reader.Size and Writer.Size accessorsBrad Fitzpatrick2017-11-023-0/+26
* Revert "bufio: make Reader.Peek invalidate Unreads"Russ Cox2017-07-062-21/+0
* bufio: make Reader.Peek invalidate UnreadsMartin Garton2017-06-272-0/+21
* all: single space after periodBrad Fitzpatrick2017-06-091-1/+1
* bufio: clarify WriteTo docsSam Whited2017-06-081-0/+1
* bufio: clarify that Flush returns a cached write errorIan Lance Taylor2017-04-211-1/+1
* all: remove redundant returnsDaniel Martí2017-04-191-1/+0
* bufio: remove unnecessary "continue"Quentin Smith2016-10-241-1/+0
* bufio: read from underlying reader at most once in ReadRuss Cox2016-10-182-2/+31
* bufio: remove redundant Writer.flush methodMatt Layher2016-10-011-11/+6
* all: use SeekStart, SeekCurrent, SeekEndJoe Tsai2016-05-061-1/+1
* all: replace magic 0x80 with named constant utf8.RuneSelfMartin Möhrmann2016-04-101-1/+1
* all: delete dead test codeDominik Honnef2016-03-211-4/+0
* bufio: Reader.Peek returns partial results on ErrBufferFulldjherbis2016-03-042-7/+9
* all: single space after period.Brad Fitzpatrick2016-03-021-2/+2
* all: remove public named return values when uselessBrad Fitzpatrick2016-02-291-7/+6
* all: fix typos and spellingMartin Möhrmann2016-02-242-2/+2
* bufio: clarify Read docsRuss Cox2015-12-011-1/+1
* bufio: fix scanning with a final empty token.Rob Pike2015-09-253-11/+63
* bufio: fix overflow calculation in ScanRob Pike2015-09-201-8/+4
* bufio: allow Scanner to accept a user-provided bufferRob Pike2015-09-182-5/+56
* bufio: Remove unneeded error initializationSilvan Jegen2015-07-181-1/+0