aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/floatconv.go
AgeCommit message (Expand)Author
2020-04-14math/big: don't use Float in init to help linker discard 162 KiBBrad Fitzpatrick
2019-03-25math/big: accept non-decimal floats with Rat.SetStringRobert 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-11math/big: permit upper-case 'P' binary exponent (not just 'p')Robert Griesemer
2016-10-24math/big: fix alignment in Float.Parse docsMohit Agarwal
2016-10-19math/big: implement Float.Scan, type assert fmt interfaces to enforce docsEmmanuel Odeke
2016-10-06math/big: Rat.SetString to report error if input is not consumed entirelyRobert Griesemer
2016-02-24all: fix typos and spellingMartin Möhrmann
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-05-29math/big: remove (*Float).Scan, ScanFloat; more robust (*Float).ParseRobert 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-17math/big: clearer semantics for Float.ScanRobert Griesemer
2015-03-17math/big: cleaner handling of exponent under/overflowRobert Griesemer
2015-03-12math/big: added (internal) Float.form field for easier case distinctionsRobert Griesemer
2015-03-04math/big: use stringer for enum String() methodsRobert Griesemer
2015-03-04math/big: implement NaNRobert Griesemer
2015-02-25math/big: clean up Float.SetPrec, use shorter internal representationRobert 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-14math/big: don't scan past a binary exponent if not accepted syntacticallyRobert Griesemer
2015-02-14math/big: implement/rename accessors for precision and rounding modeRobert Griesemer
2015-02-14math/big: fix aliasing error in Add, SubRobert Griesemer
2015-02-10math/big: implemented Frexp, Ldexp, IsInt, Copy, bug fixes, more testsRobert Griesemer
2015-02-06math/big: handling of +/-Inf and zero precision, enable zero valuesRobert 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-02-03math/big: fix typosRobert Griesemer
2015-02-03math/big: build Float.Format on top of Float.AppendRobert Griesemer
2015-01-30math/big: split float conversion routines and tests into separate filesRobert Griesemer