- f1f85f4 strconv: delete unused field by cuiweixie · 2 years, 6 months ago
- 95ec579 strconv: add a test case when base is illegal by cui fliter · 2 years, 6 months ago
- 3c33c3b strconv: remove redundant type conversion by cui fliter · 2 years, 6 months ago
- cf26fbb strconv: optimize Parse for []byte arguments by Joe Tsai · 3 years, 7 months ago
- 41e1d90 strconv: avoid panic on invalid call to FormatFloat by Rémy Oudompheng · 2 years, 11 months ago
- d43ddc1 strconv: fix typo in atof.go by 90364136+butterfly1924@users.noreply.github.com · 2 years, 9 months ago
- 47f806c strconv: clarify ParseFloat accepts Go syntax for float literals by Ben Hoyt · 2 years, 9 months ago
- 1930977 all: gofmt main repo by Russ Cox · 3 years, 1 month ago
- 690ac40 all: remove trailing blank doc comment lines by Russ Cox · 3 years, 1 month ago
- 31ee4bb strconv: quote rune 007F as \x7f, not \u007f by Ian Lance Taylor · 3 years ago
- 3efc721 fmt, strconv: document use of Unicode replacement character in %q by Russ Cox · 3 years ago
- 4d8db00 all: use bytes.Cut, strings.Cut by Russ Cox · 3 years, 6 months ago
- 6e50991 strconv: reject surrogate halves in Unquote by Joe Tsai · 3 years, 7 months ago
- 4012fea all: fix typos by Yasuhiro Matsumoto · 3 years, 8 months ago
- 1402b27 strconv: document parsing of leading +/- by Damien Neil · 3 years, 9 months ago
- 909dd5e strconv: ParseFloat: always return ErrSyntax for bad syntax by Ian Lance Taylor · 3 years, 9 months ago
- 138d2c9 strconv: fix a typo by EndlessCheng · 3 years, 10 months ago
- e376929 strconv: add QuotedPrefix by Joe Tsai · 3 years, 11 months ago
- 074a49b strconv: remove unused extfloat (Grisu3) ftoa code by Rémy Oudompheng · 3 years, 11 months ago
- 61a08fc strconv: Implement Ryū algorithm for ftoa shortest mode by Rémy Oudompheng · 6 years ago
- 0184b44 strconv: implement Ryū-like algorithm for fixed precision ftoa by Rémy Oudompheng · 6 years ago
- 7af821a all: faster midpoint computation in binary search by yangwenmai · 4 years, 3 months ago
- d4b2638 all: go fmt std cmd (but revert vendor) by Russ Cox · 4 years, 1 month ago
- 267975d Merge branch 'master' into dev.regabi by Alexander Rakoczy · 4 years, 3 months ago
- 4f1b0a4 all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTemp by Russ Cox · 4 years, 5 months ago
- 015423a [dev.regabi] strconv: add to bootstrap packages by Matthew Dempsky · 4 years, 4 months ago
- e1b305a strconv: revert ParseFloat/ParseComplex error on incorrect bitSize by Ben Hoyt · 4 years, 4 months ago
- 60f42ea strconv: fix incorrect bit size in ParseComplex; add tests by Ben Hoyt · 4 years, 7 months ago
- f43e012 strconv: make Eisel-Lemire handle long mantissas by Rémy Oudompheng · 4 years, 5 months ago
- 7fe2a84 strconv: remove extfloat.go atof code path by Nigel Tao · 4 years, 5 months ago
- 7e01b3b strconv: add eiselLemire32 by Nigel Tao · 4 years, 5 months ago
- ad36f87 strconv: increase the Eisel-Lemire exp10 range by Nigel Tao · 4 years, 5 months ago
- 4ce9ea5 strconv: fix Eisel-Lemire for negative zero by Nigel Tao · 4 years, 5 months ago
- a2eb53c strconv: use the Eisel-Lemire ParseFloat algorithm by Nigel Tao · 4 years, 5 months ago
- 8ec5a05 unicode: upgrade to Unicode 13.0.0 by Marcel van Lohuizen · 4 years, 7 months ago
- 65126c5 strconv: fix ParseComplex for strings with separators by Robert Griesemer · 4 years, 10 months ago
- 4f65fb3 strconv: add ParseComplex and FormatComplex by pj · 4 years, 10 months ago
- 8740bdc strconv: fix for parseFloatPrefix by Robert Griesemer · 4 years, 11 months ago
- 1d31f9b strconv: implement parseFloatPrefix returning no. of bytes consumed by Robert Griesemer · 4 years, 11 months ago
- 0a36433 strconv: remove redundant conversions to int by smasher164 · 4 years, 11 months ago
- b10849f strconv: add comment re extFloat errorscale by Nigel Tao · 5 years ago
- 6052838 all: avoid string(i) where i has type int by Ian Lance Taylor · 5 years ago
- c333d07 strconv: stop describing Unicode graphic characters as non-ASCII by Ian Lance Taylor · 5 years ago
- 0e312f2 strconv: reformat and tidy comments in example by Rob Pike · 5 years ago
- 79a00a3 unicode: upgrade to Unicode 12 by Marcel van Lohuizen · 5 years ago
- 0adc89a strconv: add Unwrap to custom error types by Pantelis Sampaziotis · 6 years ago
- 3d48ae3 strconv: Speed improvement to number parsing by Sam Arnold · 6 years ago
- 5498fa9 strconv: simplify the text for bases in ParseInt by Rob Pike · 6 years ago
- d9b1323 strconv: update documentation by Emmanuel T Odeke · 6 years ago
- 2165452 strconv: document handling of NaN and ±Inf by Andrew Gerrand · 6 years ago
- 0509216 strconv: fix rounding in FormatFloat fallback path by Caleb Spare · 6 years ago
- 203b80a strconv: Document ParseFloat's special cases by Alex Myasoedov · 6 years ago
- 34fc6ce all: update to Unicode 11 by Marcel van Lohuizen · 6 years ago
- c226f64 strconv: pre-allocate in appendQuotedWith by Rob Pike · 6 years ago
- a1f7dbf strconv: simplify (*extFloat).Multiply using math/bits.Mul64 by Rémy Oudompheng · 6 years ago
- 36b09f3 strconv: remove use of DeepEqual for testing errors by Marcel van Lohuizen · 6 years ago
- 11af353 strconv: add 0b, 0o integer prefixes in ParseInt, ParseUint by Russ Cox · 6 years ago
- 36a81d5 strconv: accept underscores in ParseInt, ParseUint, ParseFloat by Russ Cox · 6 years ago
- e2d87f2 strconv: format hex floats by Russ Cox · 6 years ago
- 0771724 strconv: parse hex floats by Russ Cox · 6 years ago
- ed78c90 strconv: make docs for Itoa and Atoi slightly higher level by Josh Bleecher Snyder · 6 years ago
- f4f1b14 strconv: add missing package name into doc.go(godoc overview) by Hidetatsu Yaginuma · 6 years ago
- f81d73e strconv: add comment explaining bounded shift in formatBits by Martin Möhrmann · 7 years ago
- 2afdd17 strconv: add example for QuoteRuneToGraphic and QuoteToGraphic functions by Urvil Patel · 6 years ago
- 8aee193 all: remove unneeded parentheses from package consts and vars by Tim Cooper · 6 years ago
- 860484a strconv: add example for IsGraphic by Ankit Goyal · 7 years ago
- 5ddecd1 strconv: use bytealg implementation of IndexByteString by Tim Cooper · 7 years ago
- 6b9c782 strconv: clarify "g" and "G" precision in the docs by Daniela Petruzalek · 7 years ago
- 1f13705 strconv: add missing period to godoc comment by Mark Rushakoff · 7 years ago
- b219a68 strconv: check for empty string in UnquoteChar by Rebecca Stambler · 7 years ago
- 161874d all: update comment URLs from HTTP to HTTPS, where possible by Tim Cooper · 7 years ago
- 323c858 strconv: simplify (*extFloat).Normalize by Ilya Tocar · 7 years ago
- 74879f0 strconv: update Unquote example to be more concise by Sabin Mihai Rapan · 7 years ago
- 3c0bf18 strconv: simplify and optimize Itoa(small) by Marvin Stenger · 7 years ago
- d29ec40 strconv: use bounded bits.TrailingZeros instead of shifts table by Martin Möhrmann · 7 years ago
- b3be2f4 strconv: make code formatting more consistent in doc.go by quasilyte · 7 years ago
- 5e52471 all: fix non-standard "DO NOT EDIT" comments for generated files by Mark Rushakoff · 7 years ago
- c10e614 strconv: detect invalid UTF-8 in the Unquote fast path by Brad Fitzpatrick · 7 years ago
- 2fd9549 unicode: update to Unicode 10.0.0 by Marcel van Lohuizen · 7 years ago
- 5a986ec all: fix article typos by Kunpei Sakai · 7 years ago
- 99da873 all: remove some double spaces from comments by Daniel Martí · 8 years ago
- 46aa9f5 strconv: optimize Atoi for common case by Aliaksandr Valialkin · 8 years ago
- 63c4284 strconv: check bitsize range in ParseInt and ParseUint by Martin Möhrmann · 8 years ago
- de7e5d4 strconv: cleanup variable declarations in ParseUint by Martin Möhrmann · 8 years ago
- dd6880d strconv: unify error creation in ParseUint with ParseInt by Martin Möhrmann · 8 years ago
- 566f390 strconv: adjust test output and names for parseUint and parseInt by Martin Möhrmann · 8 years ago
- 09ed0f6 strconv: avoid truncation of output in parse int tests by Martin Möhrmann · 8 years ago
- fc6b74c strconv: fix ParseUint return value on range overflow by Martin Möhrmann · 8 years ago
- 8bb88fd strconv: apply Brad's review comment by Russ Cox · 8 years ago
- 5ac16c6 strconv: fix initialization of atofRandomTests by Russ Cox · 8 years ago
- 8cb40fa strconv: adds missing comment to neg flag, formats comment on trunc flag by Adam Kisala · 8 years ago
- 4c8023b strconv: optimize decimal ints formatting with smallsString by Aliaksandr Valialkin · 8 years ago
- aea4410 strconv: replace small int string table with constant string by Robert Griesemer · 8 years ago
- bc8b9b2 strconv: optimize formatting for small decimal ints by Aliaksandr Valialkin · 8 years ago
- b71ed4e strconv: fix performance regression in integer formatting on 32bit platforms by Martin Möhrmann · 8 years ago
- 95c5227 strconv: use % instead of computing the remainder from the quotient by Robert Griesemer · 8 years ago
- de36699 strconv: remove unused append rune width param by Daniel Martí · 8 years ago
- 7c46f03 strconv: strip \r in raw strings passed to Unquote by Quentin Smith · 8 years ago
- cbf28ff strconv: make FormatFloat slowpath a little faster by Alberto Donizetti · 8 years ago
- 3a67d59 strconv: fix function name in errors for Atoi by Joe Tsai · 9 years ago