aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/float.go
AgeCommit message (Expand)Author
2020-08-28math/big: add a comment for SetMantExpsurechen
2020-03-20math/big: document that Sqrt doesn't set AccuracyAlberto Donizetti
2018-11-02all: use "reports whether" consistently in the few places that didn'tBrad Fitzpatrick
2018-10-29math/big: shallow copies of Int/Rat/Float are not supported (documentation)Robert Griesemer
2018-10-06all: fix a bunch of misspellingsIgor Zhilianin
2018-06-14math/big: round x + (-x) to -0 for mode ToNegativeInfBrian Kessler
2018-06-01all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper
2017-08-18math/big: recognize squaring for FloatsBrian Kessler
2017-08-11math/big: avoid unneeded sticky bit calculationsBrian Kessler
2017-05-31math/big: fix Add, Sub when receiver aliases 2nd operandAlberto Donizetti
2017-03-23math/big: replace local versions of bitLen, nlz with math/bits versionsRobert Griesemer
2017-03-06all: remove the the duplicate wordsEitan Adler
2016-08-17math/big: avoid allocation in float.{Add, Sub} when there's no aliasingAlberto Donizetti
2016-04-15all: remove unnecessary type conversionsMatthew Dempsky
2016-03-22math/big: much simplified and faster Float roundingRobert Griesemer
2016-03-21math/big: fix rounding to smallest denormal for Float.Float32/64Robert Griesemer
2016-03-04math/big: use correct precision in Float.Float32/64 for denormalsRobert Griesemer
2016-02-24all: fix typos and spellingMartin Möhrmann
2015-12-09math/big: fix typoBrad Fitzpatrick
2015-10-23math/big: fix SetMantExp commentDavid Crawshaw
2015-09-11all: use one 'l' when cancelling everywhere except SolarisRob Pike
2015-09-09all: minor documentation tweaks for constantsKonstantin Shaposhnikov
2015-07-12all: link to https for golang subdomains tooBrad Fitzpatrick
2015-06-03math/big: turn off debug modeRobert 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-27math/big: more cleanups (msbxx, nlzxx functions)Robert Griesemer
2015-05-22math/big: Always print exponent sign when using 'p' exponent for Floats.Robert Griesemer
2015-05-22math/big: fix Float.Float64 conversion for denormal corner casesRobert Griesemer
2015-05-22math/big: fix Float.Float32 conversion for denormal corner casesRobert Griesemer
2015-04-09math/big: better doc strings for ErrNaN functionalityRobert Griesemer
2015-04-08math/big: make ErrNaN actually implement the error interface (oversight)Robert Griesemer
2015-04-02math/big: implement missing special cases for binary operationsRobert Griesemer
2015-03-31math/big: remove NaN support - just not worth itRobert Griesemer
2015-03-31math/big: fixed Float.Float64, implemented Float.Float32Robert Griesemer
2015-03-24math/big: fix known bug in Float.Float64Robert Griesemer
2015-03-17math/big: cleaner handling of exponent under/overflowRobert Griesemer
2015-03-14math/big: wrap Float.Cmp result in struct to prevent wrong useRobert Griesemer
2015-03-13math/big: fix minor documentation issueRobert Griesemer
2015-03-13math/big: fix silly bug in Int64 accessorRobert Griesemer
2015-03-12math/big: handle NaNs in Float.CmpRobert Griesemer
2015-03-12math/big: added (internal) Float.form field for easier case distinctionsRobert Griesemer
2015-03-12math/big: make validate a method of Float (cleanup)Robert Griesemer
2015-03-12math/big: introduce Bits abstraction instead of using "untyped" []int bit listsRobert Griesemer
2015-03-04math/big: reenable TestFloatAdd32 (used to fail on 32bit platforms)Robert Griesemer
2015-03-04math/big: use stringer for enum String() methodsRobert Griesemer
2015-03-04math/big: added Float.Add example, remove warning from FloatsRobert Griesemer
2015-03-04math/big: remove Float.Lsh/Rsh; added shift exampleRobert Griesemer
2015-03-04math/big: introduce Undef Accuracy, use for NaN operands/resultsRobert Griesemer
2015-03-04math/big: modified MantExp semantics to enable fast exponent accessRobert Griesemer