aboutsummaryrefslogtreecommitdiff
path: root/src/math/big
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-06math/big: move "bits" operations used for Float tests into separate fileRobert Griesemer
2015-03-05math/big: added more comprehensive mul/quo testRobert 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-26math/big: fix build for 32bit platformsRobert 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: fix test for 32bit platforms (fix build)Robert 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: fix formatting for 'b' formatRobert Griesemer
2015-02-23math/big: don't return io.EOF on successful call of ParseFloatRobert 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: don't scan past a binary exponent if not accepted syntacticallyRobert Griesemer
2015-02-14math/big: only permit bases 2, 10, 16 when scanning number w/ "decimal" pointRobert 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: add test cases for Float.Abs and Float.NegRobert 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-06all: don't refer to code.google.com/p/go{,-wiki}/Péter Surányi
2015-02-05math/big: add "smoke test" for big.Float divisionRobert Griesemer