summaryrefslogtreecommitdiff
path: root/src/strconv
Commit message (Expand)AuthorAgeFilesLines
* strconv: reject surrogate halves in UnquoteJoe Tsai2021-08-212-2/+5
* all: fix typosYasuhiro Matsumoto2021-08-171-1/+1
* strconv: document parsing of leading +/-Damien Neil2021-06-092-3/+18
* strconv: ParseFloat: always return ErrSyntax for bad syntaxIan Lance Taylor2021-06-072-1/+4
* strconv: fix a typoEndlessCheng2021-05-041-1/+1
* strconv: add QuotedPrefixJoe Tsai2021-05-044-85/+153
* strconv: remove unused extfloat (Grisu3) ftoa codeRémy Oudompheng2021-04-272-517/+5
* strconv: Implement Ryū algorithm for ftoa shortest modeRémy Oudompheng2021-04-153-10/+287
* strconv: implement Ryū-like algorithm for fixed precision ftoaRémy Oudompheng2021-04-155-5/+374
* all: faster midpoint computation in binary searchyangwenmai2021-02-232-4/+4
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-203-0/+3
* Merge branch 'master' into dev.regabiAlexander Rakoczy2020-12-141-2/+2
|\
| * all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox2020-12-091-2/+2
* | [dev.regabi] strconv: add to bootstrap packagesMatthew Dempsky2020-11-244-14/+39
|/
* strconv: revert ParseFloat/ParseComplex error on incorrect bitSizeBen Hoyt2020-11-034-22/+30
* strconv: fix incorrect bit size in ParseComplex; add testsBen Hoyt2020-10-306-3/+101
* strconv: make Eisel-Lemire handle long mantissasRémy Oudompheng2020-10-292-12/+65
* strconv: remove extfloat.go atof code pathNigel Tao2020-10-293-176/+18
* strconv: add eiselLemire32Nigel Tao2020-10-232-6/+84
* strconv: increase the Eisel-Lemire exp10 rangeNigel Tao2020-10-221-5/+119
* strconv: fix Eisel-Lemire for negative zeroNigel Tao2020-10-221-2/+5
* strconv: use the Eisel-Lemire ParseFloat algorithmNigel Tao2020-10-173-1/+699
* unicode: upgrade to Unicode 13.0.0Marcel van Lohuizen2020-08-201-44/+54
* strconv: fix ParseComplex for strings with separatorsRobert Griesemer2020-05-083-18/+25
* strconv: add ParseComplex and FormatComplexpj2020-05-085-3/+330
* strconv: fix for parseFloatPrefixRobert Griesemer2020-04-302-3/+8
* strconv: implement parseFloatPrefix returning no. of bytes consumedRobert Griesemer2020-04-303-67/+104
* strconv: remove redundant conversions to intsmasher1642020-04-271-2/+2
* strconv: add comment re extFloat errorscaleNigel Tao2020-04-111-1/+23
* all: avoid string(i) where i has type intIan Lance Taylor2020-02-261-33/+33
* strconv: stop describing Unicode graphic characters as non-ASCIIIan Lance Taylor2020-01-261-5/+6
* strconv: reformat and tidy comments in exampleRob Pike2019-11-111-3/+6
* unicode: upgrade to Unicode 12Marcel van Lohuizen2019-11-051-39/+47
* strconv: add Unwrap to custom error typesPantelis Sampaziotis2019-09-302-0/+9
* strconv: Speed improvement to number parsingSam Arnold2019-08-282-15/+31
* strconv: simplify the text for bases in ParseIntRob Pike2019-08-231-5/+4
* strconv: update documentationEmmanuel T Odeke2019-08-222-2/+3
* strconv: document handling of NaN and ±InfAndrew Gerrand2019-05-312-1/+4
* strconv: fix rounding in FormatFloat fallback pathCaleb Spare2019-05-232-11/+56
* strconv: Document ParseFloat's special casesAlex Myasoedov2019-04-291-0/+29
* all: update to Unicode 11Marcel van Lohuizen2019-04-251-43/+51
* strconv: pre-allocate in appendQuotedWithRob Pike2019-04-182-0/+17
* strconv: simplify (*extFloat).Multiply using math/bits.Mul64Rémy Oudompheng2019-03-041-13/+2
* strconv: remove use of DeepEqual for testing errorsMarcel van Lohuizen2019-02-271-4/+14
* strconv: add 0b, 0o integer prefixes in ParseInt, ParseUintRuss Cox2019-02-122-20/+52
* strconv: accept underscores in ParseInt, ParseUint, ParseFloatRuss Cox2019-02-124-11/+193
* strconv: format hex floatsRuss Cox2019-02-123-7/+123
* strconv: parse hex floatsRuss Cox2019-02-123-48/+341
* strconv: make docs for Itoa and Atoi slightly higher levelJosh Bleecher Snyder2018-12-312-2/+2
* strconv: add missing package name into doc.go(godoc overview)Hidetatsu Yaginuma2018-12-301-2/+2