summaryrefslogtreecommitdiff
path: root/src/bufio
Commit message (Expand)AuthorAgeFilesLines
* bufio: permit r.Reset(r) without infinite recursionIan Lance Taylor2023-02-102-15/+52
* bufio: use strings.Buildercuiweixie2022-09-291-4/+4
* bufio: use bytes.Clonecuiweixie2022-09-271-2/+1
* bufio: use strings.Buildercuiweixie2022-09-061-4/+4
* bufio: clarify io.EOF behavior of Reader.ReadIan Lance Taylor2022-05-021-1/+2
* bufio: implement large write forwarding in Writer.WriteStringCarlo Alberto Ferraris2022-04-212-3/+79
* all: remove trailing blank doc comment linesRuss Cox2022-04-011-1/+0
* all: fix typo in commentichxxx2021-12-151-1/+1
* bufio: mention that panic at slicing means underlying reader is brokenKeith Randall2021-11-261-0/+2
* bufio: document that NewWriter can return its argumentIan Lance Taylor2021-11-091-0/+2
* bufio: fix typo in commentlgbgbl2021-11-051-1/+1
* bufio: use underlying ReadFrom even when data is bufferedDamien Neil2021-10-182-9/+58
* bufio: reject UnreadByte or UnreadRune after a Discard or WriteToBryan C. Mills2021-10-012-2/+43
* bufio: add Writer.AvailableBufferJoe Tsai2021-09-123-0/+53
* bufio: make Reader.Reset and Writer.Reset work on the zero valueJoe Tsai2021-09-112-1/+34
* 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