aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/floatconv_test.go
AgeCommit message (Expand)Author
2019-09-18math/big: avoid MinExp exponent wrap-around in 'x' Text formatRobert Griesemer
2019-03-12math/big: add support for underscores '_' in numbersRobert Griesemer
2019-03-07math/big: support new octal prefixes 0o and 0ORobert Griesemer
2019-02-26math/big: add %x float formatRuss Cox
2019-02-12strconv: format hex floatsRuss Cox
2019-02-11math/big: permit upper-case 'P' binary exponent (not just 'p')Robert Griesemer
2018-06-01all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper
2017-03-23math/big: replace local versions of bitLen, nlz with math/bits versionsRobert Griesemer
2017-03-23math/big: fix TestFloatSetFloat64StringRobert Griesemer
2016-10-19math/big: implement Float.Scan, type assert fmt interfaces to enforce docsEmmanuel Odeke
2016-06-01math/big: avoid panic in float.Text with negative precAlberto Donizetti
2015-09-29math/big: more documentationRobert Griesemer
2015-09-24math/big: fix test for denormalized inputs and enable more test casesRobert Griesemer
2015-09-23math/big: implement negative precision for Float.Append/TextRobert Griesemer
2015-09-22math/big: add test cases for min/max exponent valuesRobert Griesemer
2015-09-22math/big: optimize Float.Parse by reducing powers of 10 to powers of 2 and 5Robert Griesemer
2015-08-21math/big: correctly handle large exponent in SetStringAlberto Donizetti
2015-06-02math/big: implement fmt.Formatter-compatible (*Float).FormatRobert Griesemer
2015-05-29math/big: remove (*Float).Scan, ScanFloat; more robust (*Float).ParseRobert Griesemer
2015-05-29math/big: rename (*Float).Format to (*Float).TextRobert Griesemer
2015-05-28math/big: fix latent decimal conversion bugRobert Griesemer
2015-05-27math/big: removed TODO, cleanupsRobert Griesemer
2015-05-22math/big: Always print exponent sign when using 'p' exponent for Floats.Robert Griesemer
2015-04-04math/big: compute 10**exp efficiently when converting FloatsRobert Griesemer
2015-03-31math/big: remove NaN support - just not worth itRobert Griesemer
2015-03-14math/big: wrap Float.Cmp result in struct to prevent wrong useRobert Griesemer
2015-02-24math/big: fix several issues with string->Float conversionRobert Griesemer
2015-02-23math/big: fix formatting for 'b' formatRobert Griesemer
2015-02-23math/big: don't return io.EOF on successful call of ParseFloatRobert Griesemer
2015-02-06math/big: handling of +/-Inf and zero precision, enable zero valuesRobert Griesemer
2015-02-05math/big: more Float conversion testsRobert Griesemer
2015-02-04math/big: first version of Float %e, %f, %g, %G formatting workingRobert Griesemer
2015-02-04math/big: fix %b format so it matches strconf %b format for non-zero valuesRobert Griesemer
2015-01-30math/big: split float conversion routines and tests into separate filesRobert Griesemer