summaryrefslogtreecommitdiff
path: root/src/math/big/float.go
Commit message (Expand)AuthorAgeFilesLines
* all: gofmt main repoRuss Cox2022-04-111-4/+4
* all: remove trailing blank doc comment linesRuss Cox2022-04-011-3/+0
* math/big: clarified doc string for SetMantExpRobert Griesemer2021-08-221-1/+3
* math/big: add a comment for SetMantExpsurechen2020-08-281-3/+4
* math/big: document that Sqrt doesn't set AccuracyAlberto Donizetti2020-03-201-1/+3
* all: use "reports whether" consistently in the few places that didn'tBrad Fitzpatrick2018-11-021-1/+1
* math/big: shallow copies of Int/Rat/Float are not supported (documentation)Robert Griesemer2018-10-291-1/+7
* all: fix a bunch of misspellingsIgor Zhilianin2018-10-061-1/+1
* math/big: round x + (-x) to -0 for mode ToNegativeInfBrian Kessler2018-06-141-2/+6
* all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper2018-06-011-1/+1
* math/big: recognize squaring for FloatsBrian Kessler2017-08-181-2/+5
* math/big: avoid unneeded sticky bit calculationsBrian Kessler2017-08-111-2/+3
* math/big: fix Add, Sub when receiver aliases 2nd operandAlberto Donizetti2017-05-311-2/+11
* math/big: replace local versions of bitLen, nlz with math/bits versionsRobert Griesemer2017-03-231-2/+3
* all: remove the the duplicate wordsEitan Adler2017-03-061-1/+1
* math/big: avoid allocation in float.{Add, Sub} when there's no aliasingAlberto Donizetti2016-08-171-12/+32
* all: remove unnecessary type conversionsMatthew Dempsky2016-04-151-2/+2
* math/big: much simplified and faster Float roundingRobert Griesemer2016-03-221-85/+49
* math/big: fix rounding to smallest denormal for Float.Float32/64Robert Griesemer2016-03-211-56/+78
* math/big: use correct precision in Float.Float32/64 for denormalsRobert Griesemer2016-03-041-10/+14
* all: fix typos and spellingMartin Möhrmann2016-02-241-1/+1
* math/big: fix typoBrad Fitzpatrick2015-12-091-1/+1
* math/big: fix SetMantExp commentDavid Crawshaw2015-10-231-1/+1
* all: use one 'l' when cancelling everywhere except SolarisRob Pike2015-09-111-1/+1
* all: minor documentation tweaks for constantsKonstantin Shaposhnikov2015-09-091-1/+1
* all: link to https for golang subdomains tooBrad Fitzpatrick2015-07-121-1/+1
* math/big: turn off debug modeRobert Griesemer2015-06-031-1/+1
* math/big: remove (*Float).Scan, ScanFloat; more robust (*Float).ParseRobert Griesemer2015-05-291-5/+2
* math/big: rename (*Float).Format to (*Float).TextRobert Griesemer2015-05-291-1/+1
* math/big: more cleanups (msbxx, nlzxx functions)Robert Griesemer2015-05-271-38/+38
* math/big: Always print exponent sign when using 'p' exponent for Floats.Robert Griesemer2015-05-221-0/+2
* math/big: fix Float.Float64 conversion for denormal corner casesRobert Griesemer2015-05-221-36/+38
* math/big: fix Float.Float32 conversion for denormal corner casesRobert Griesemer2015-05-221-36/+43
* math/big: better doc strings for ErrNaN functionalityRobert Griesemer2015-04-091-3/+2
* math/big: make ErrNaN actually implement the error interface (oversight)Robert Griesemer2015-04-081-0/+5
* math/big: implement missing special cases for binary operationsRobert Griesemer2015-04-021-95/+136
* math/big: remove NaN support - just not worth itRobert Griesemer2015-03-311-141/+79
* math/big: fixed Float.Float64, implemented Float.Float32Robert Griesemer2015-03-311-35/+163
* math/big: fix known bug in Float.Float64Robert Griesemer2015-03-241-13/+58
* math/big: cleaner handling of exponent under/overflowRobert Griesemer2015-03-171-102/+100
* math/big: wrap Float.Cmp result in struct to prevent wrong useRobert Griesemer2015-03-141-13/+18
* math/big: fix minor documentation issueRobert Griesemer2015-03-131-1/+1
* math/big: fix silly bug in Int64 accessorRobert Griesemer2015-03-131-1/+1
* math/big: handle NaNs in Float.CmpRobert Griesemer2015-03-121-39/+56
* math/big: added (internal) Float.form field for easier case distinctionsRobert Griesemer2015-03-121-312/+329
* math/big: make validate a method of Float (cleanup)Robert Griesemer2015-03-121-25/+25
* math/big: introduce Bits abstraction instead of using "untyped" []int bit listsRobert Griesemer2015-03-121-1/+1
* math/big: reenable TestFloatAdd32 (used to fail on 32bit platforms)Robert Griesemer2015-03-041-6/+6
* math/big: use stringer for enum String() methodsRobert Griesemer2015-03-041-103/+78
* math/big: added Float.Add example, remove warning from FloatsRobert Griesemer2015-03-041-5/+0