aboutsummaryrefslogtreecommitdiff
path: root/src/strconv
AgeCommit message (Expand)Author
2021-08-21strconv: reject surrogate halves in UnquoteJoe Tsai
2021-08-17all: fix typosYasuhiro Matsumoto
2021-06-09strconv: document parsing of leading +/-Damien Neil
2021-06-07strconv: ParseFloat: always return ErrSyntax for bad syntaxIan Lance Taylor
2021-05-04strconv: fix a typoEndlessCheng
2021-05-04strconv: add QuotedPrefixJoe Tsai
2021-04-27strconv: remove unused extfloat (Grisu3) ftoa codeRémy Oudompheng
2021-04-15strconv: Implement Ryū algorithm for ftoa shortest modeRémy Oudompheng
2021-04-15strconv: implement Ryū-like algorithm for fixed precision ftoaRémy Oudompheng
2021-02-23all: faster midpoint computation in binary searchyangwenmai
2021-02-20all: go fmt std cmd (but revert vendor)Russ Cox
2020-12-14Merge branch 'master' into dev.regabiAlexander Rakoczy
2020-12-09all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox
2020-11-24[dev.regabi] strconv: add to bootstrap packagesMatthew Dempsky
2020-11-03strconv: revert ParseFloat/ParseComplex error on incorrect bitSizeBen Hoyt
2020-10-30strconv: fix incorrect bit size in ParseComplex; add testsBen Hoyt
2020-10-29strconv: make Eisel-Lemire handle long mantissasRémy Oudompheng
2020-10-29strconv: remove extfloat.go atof code pathNigel Tao
2020-10-23strconv: add eiselLemire32Nigel Tao
2020-10-22strconv: increase the Eisel-Lemire exp10 rangeNigel Tao
2020-10-22strconv: fix Eisel-Lemire for negative zeroNigel Tao
2020-10-17strconv: use the Eisel-Lemire ParseFloat algorithmNigel Tao
2020-08-20unicode: upgrade to Unicode 13.0.0Marcel van Lohuizen
2020-05-08strconv: fix ParseComplex for strings with separatorsRobert Griesemer
2020-05-08strconv: add ParseComplex and FormatComplexpj
2020-04-30strconv: fix for parseFloatPrefixRobert Griesemer
2020-04-30strconv: implement parseFloatPrefix returning no. of bytes consumedRobert Griesemer
2020-04-27strconv: remove redundant conversions to intsmasher164
2020-04-11strconv: add comment re extFloat errorscaleNigel Tao
2020-02-26all: avoid string(i) where i has type intIan Lance Taylor
2020-01-26strconv: stop describing Unicode graphic characters as non-ASCIIIan Lance Taylor
2019-11-11strconv: reformat and tidy comments in exampleRob Pike
2019-11-05unicode: upgrade to Unicode 12Marcel van Lohuizen
2019-09-30strconv: add Unwrap to custom error typesPantelis Sampaziotis
2019-08-28strconv: Speed improvement to number parsingSam Arnold
2019-08-23strconv: simplify the text for bases in ParseIntRob Pike
2019-08-22strconv: update documentationEmmanuel T Odeke
2019-05-31strconv: document handling of NaN and ±InfAndrew Gerrand
2019-05-23strconv: fix rounding in FormatFloat fallback pathCaleb Spare
2019-04-29strconv: Document ParseFloat's special casesAlex Myasoedov
2019-04-25all: update to Unicode 11Marcel van Lohuizen
2019-04-18strconv: pre-allocate in appendQuotedWithRob Pike
2019-03-04strconv: simplify (*extFloat).Multiply using math/bits.Mul64Rémy Oudompheng
2019-02-27strconv: remove use of DeepEqual for testing errorsMarcel van Lohuizen
2019-02-12strconv: add 0b, 0o integer prefixes in ParseInt, ParseUintRuss Cox
2019-02-12strconv: accept underscores in ParseInt, ParseUint, ParseFloatRuss Cox
2019-02-12strconv: format hex floatsRuss Cox
2019-02-12strconv: parse hex floatsRuss Cox
2018-12-31strconv: make docs for Itoa and Atoi slightly higher levelJosh Bleecher Snyder
2018-12-30strconv: add missing package name into doc.go(godoc overview)Hidetatsu Yaginuma