aboutsummaryrefslogtreecommitdiff
path: root/src/strconv
AgeCommit message (Expand)Author
2026-01-22all: update to Unicode 17Russ Cox
2026-01-20strconv: don't call internal Atoi twice in AtoiDaniel Müllner
2025-10-29strconv: move all but Quote to internal/strconvRuss Cox
2025-10-23strconv: optimize int-to-decimal and use consistentlyRuss Cox
2025-10-22strconv: clean up powers-of-10 table, testsRuss Cox
2025-10-21strconv: embed testdata in testRuss Cox
2025-10-13strconv: add tests that Java once mishandledRuss Cox
2025-09-03unicode/utf8: make DecodeRune{,InString} inlineableJulien Cretel
2025-04-07strconv: use switch for '+'/'-' prefix handlingzhi.wang
2025-02-24strconv: use builtin min function in commonPrefixLenIgnoreCaseJes Cok
2025-01-27strconv: adjust comment so that gofmt doesn't mung itIan Lance Taylor
2024-12-17fmt, strconv: document that exponent is always two digitsIan Lance Taylor
2024-11-14strconv: cleanup old compiler bits.TrailingZeros workaroundJorropo
2024-10-16strconv: display format options as listSean Liao
2024-07-22strconv: document that Unquote("''") returns an empty stringYossef Hisham
2024-05-05strconv: use stringslite.Cloneqiulaidongfeng
2024-04-04strconv: add available godoc linkcui fliter
2024-03-12strconv: use generics to reduce redundant helper functionsapocelipes
2024-03-11strconv: use slices.BinarySearch to simplify makeisprint.goapocelipes
2023-10-19all: drop old +build linesDmitri Shuralyov
2023-10-13strconv: add example for QuotedPrefixJoe Tsai
2023-08-24strconv: add missing function name, avoid unnecessary raw stringLuka Krmpotić
2023-08-17strconv: rely on utf8.AppendRuneJoe Tsai
2023-08-11strconv: use the built-in min/max functionqiulaidongfeng
2023-03-25all: add a few links in package godocsDaniel Martí
2023-02-21strconv: add Atoi test cases with characters less than '0'Anuraag Agrawal
2023-02-06all: upgrade Unicode from 13.0.0 to 15.0.0weebney
2023-01-31strconv: show what fmt package uses for float printingKevin Burke
2022-10-26all: remove uses of rand.SeedRuss Cox
2022-09-30strconv: delete unused fieldcuiweixie
2022-09-15strconv: add a test case when base is illegalcui fliter
2022-09-09strconv: remove redundant type conversioncui fliter
2022-08-23strconv: optimize Parse for []byte argumentsJoe Tsai
2022-06-24strconv: avoid panic on invalid call to FormatFloatRémy Oudompheng
2022-06-06strconv: fix typo in atof.go90364136+butterfly1924@users.noreply.github.com
2022-06-04strconv: clarify ParseFloat accepts Go syntax for float literalsBen Hoyt
2022-04-11all: gofmt main repoRuss Cox
2022-04-01all: remove trailing blank doc comment linesRuss Cox
2022-03-31strconv: quote rune 007F as \x7f, not \u007fIan Lance Taylor
2022-03-16fmt, strconv: document use of Unicode replacement character in %qRuss Cox
2021-10-06all: use bytes.Cut, strings.CutRuss Cox
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