aboutsummaryrefslogtreecommitdiff
path: root/src/bufio
AgeCommit message (Expand)Author
2021-12-15all: fix typo in commentichxxx
2021-11-26bufio: mention that panic at slicing means underlying reader is brokenKeith Randall
2021-11-09bufio: document that NewWriter can return its argumentIan Lance Taylor
2021-11-05bufio: fix typo in commentlgbgbl
2021-10-18bufio: use underlying ReadFrom even when data is bufferedDamien Neil
2021-10-01bufio: reject UnreadByte or UnreadRune after a Discard or WriteToBryan C. Mills
2021-09-12bufio: add Writer.AvailableBufferJoe Tsai
2021-09-11bufio: make Reader.Reset and Writer.Reset work on the zero valueJoe Tsai
2021-04-30bufio: mention ErrFinalToken in SplitFunc documentationMatt Harden
2021-02-24bufio, bytes, strings: handle negative runes in WriteRuneDavid Benjamin
2020-11-28bufio: make string(int) conversion safersmasher164
2020-10-20all: update references to symbols moved from io/ioutil to ioRuss Cox
2020-08-18all: fix spelling mistakeslihaowei
2020-06-17bufio: test for exact error value in TestNegativeEOFReader and TestLargeReaderDmitri Shuralyov
2020-04-28bufio: optimize bufio.Reader.ReadString to avoid an allocation and copyAlex Gaynor
2020-03-25scan: for style, adjust code for bad scan read countsRob Pike
2020-03-25bufio: don't panic when Scanner sees an impossible Read countIan Lance Taylor
2020-02-26all: avoid string(i) where i has type intIan Lance Taylor
2019-10-31bufio: return the underlying error in ReadFrom if not nilCuong Manh Le
2019-10-31bufio: save error from underlying ReadFromCuong Manh Le
2019-10-04bufio: simplify bufio.Reader.ReadBytes to avoid an extra loop over a sliceAlex Gaynor
2019-06-25bufio: fix ExampleScanner_Bytes comment, add error checkIan Lance Taylor
2019-06-21bufio: add example for Scanner.Bytesguitarbum722
2019-06-20bufio: Reader.Read may return io.EOF even when it has data bufferedDaniel Cormier
2019-05-23bufio: Fix typo in scan.go documentationMickey Reiss
2019-03-02bufio: fix emptyFinalToken example to handle multiple ReadsAgniva De Sarker
2019-01-08bufio: document relationship between UnreadByte/UnreadRune and PeekBrad Fitzpatrick
2018-11-13bufio: make Reader.Peek invalidate UnreadsMartin Garton
2018-11-13bufio: put notes about len(p) togetherRuss Cox
2018-11-09bufio: fix indexes in TestWriterRyan Dahl
2018-10-30bufio: suggest io.ReadFull at (*Reader).ReadAlan Donovan
2018-08-22bufio: avoid rescanning buffer multiple times in ReadSliceandrius4669
2018-08-20bufio: make Reader naming consistentnogoegst
2018-06-13bufio: clarify SplitFunc docs for nil tokenIan Lance Taylor
2018-03-28bufio: document ReadFrom/WriteTo calls to underlying methodsIan Lance Taylor
2017-11-14bufio: Use maxConsecutiveEmptyReads instead of 100Ryoichi KATO
2017-11-02bufio: add Reader.Size and Writer.Size accessorsBrad Fitzpatrick
2017-07-06Revert "bufio: make Reader.Peek invalidate Unreads"Russ Cox
2017-06-27bufio: make Reader.Peek invalidate UnreadsMartin Garton
2017-06-09all: single space after periodBrad Fitzpatrick
2017-06-08bufio: clarify WriteTo docsSam Whited
2017-04-21bufio: clarify that Flush returns a cached write errorIan Lance Taylor
2017-04-19all: remove redundant returnsDaniel Martí
2016-10-24bufio: remove unnecessary "continue"Quentin Smith
2016-10-18bufio: read from underlying reader at most once in ReadRuss Cox
2016-10-01bufio: remove redundant Writer.flush methodMatt Layher
2016-05-06all: use SeekStart, SeekCurrent, SeekEndJoe Tsai
2016-04-10all: replace magic 0x80 with named constant utf8.RuneSelfMartin Möhrmann
2016-03-21all: delete dead test codeDominik Honnef
2016-03-04bufio: Reader.Peek returns partial results on ErrBufferFulldjherbis