aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/float.go
AgeCommit message (Expand)Author
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
2015-03-04math/big: implement NaNRobert Griesemer
2015-03-02math/big: replace Float.NewInf with Float.SetInf for more consistent APIRobert Griesemer
2015-02-26math/big: export Float.MinPrecRobert Griesemer
2015-02-25math/big: clean up Float.SetPrec, use shorter internal representationRobert Griesemer
2015-02-25math/big: apply a round of go vetRobert Griesemer
2015-02-25math/big: improve some doc stringsRobert Griesemer
2015-02-25math/big: permit passing of an *Int to Float.Int to avoid allocationRobert Griesemer
2015-02-25math/big: implemented Float.RatRobert Griesemer
2015-02-25math/big: permit passing of (possibly nil) *Float to MantExp to avoid allocationRobert Griesemer
2015-02-24math/big: change Float.SetMantExp to always multiply mant by 2**expRobert Griesemer
2015-02-24math/big: fix several issues with string->Float conversionRobert Griesemer
2015-02-23math/big: incorporated feedback from prior TBR reviewsRobert Griesemer
2015-02-15math/big: implement fast path in Float.SetRat if argument is integerRobert Griesemer
2015-02-15math/big: always round after the sign is setRobert Griesemer
2015-02-14math/big: fix aliasing bug in Float.QuoRobert Griesemer
2015-02-14math/big: remove Float.Round (not needed anymore), fix a bug in SetInt64Robert 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-14math/big: use internal validation more consistentlyRobert Griesemer
2015-02-12math/big: implemented Float.Int64, simplified Float.Uint64Robert Griesemer
2015-02-11math/big: completed Float.Uint64Robert Griesemer
2015-02-11math/big: implemented Float.Int (truncation of Floats to Ints)Robert Griesemer
2015-02-11math/big: When result prec == 0, use at least prec == 64 for SetInt, SetRat.Robert Griesemer
2015-02-10math/big: implemented Frexp, Ldexp, IsInt, Copy, bug fixes, more testsRobert Griesemer
2015-02-09math/big: correct umaxRobert Griesemer
2015-02-09math/big: API cleanupRobert Griesemer
2015-02-06math/big: handling of +/-Inf and zero precision, enable 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
2015-01-30math/big: parsing of fractions and floats in mantissa bases other than 10Robert Griesemer
2015-01-28math/big: sketched out complete set of Float/string conversion functionsRobert Griesemer
2015-01-27math/big: various fixes, enable tests for 32bit platformsRobert Griesemer
2015-01-24math/big: disable some tests on 32bit platforms (fix build)Robert Griesemer
2015-01-24math/big: multi-precision Floats (starting point)Robert Griesemer