| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -1/+1 | |
| 2012-07-26 | core: Mark a bunch of numeric functions as pure | Patrick Walton | -24/+24 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -52/+52 | |
| #2907. | ||||
| 2012-07-12 | Get rid of all of the remaining /~s in the code base. | Michael Sullivan | -2/+2 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -79/+79 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -4/+4 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -5/+5 | |
| 2012-06-25 | Remove redundant 'extension' mods from numeric mods | Brian Anderson | -17/+24 | |
| 2012-06-25 | Automatically export methods on core numeric types | Ben Striegel | -11/+13 | |
| Each numeric type now contains an extensions module that is automatically exported. At the moment each extensions module contains only the impl for the `num::num` iface. Other impls soon to follow (hopefully). | ||||
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -2/+2 | |
| 2012-06-14 | Comments only: Annotate FIXMEs in libcore | Tim Chevalier | -1/+1 | |
| 2012-06-07 | Add neg() to the num iface | Patrick Walton | -0/+1 | |
| 2012-06-07 | libcore: Add a num typeclass | Patrick Walton | -0/+32 | |
| 2012-06-04 | Machine types are different from int/uint, etc (Issue #2187) | Eric Holk | -20/+86 | |
| 2012-06-02 | (float) fix some rounding errors when showing as str | Kevin Cantu | -11/+64 | |
| This seems to fix issue #1876, and some of the superficial parts of issue #1375. The #fmt macro and the to_str functions will round, rather than truncate, floats as strings. Other issues remain, and I wrote more code here than intended, but the following should pass now. ``` fn x() { assert "3.1416" == #fmt["%.4f", 3.14159]; assert "3" == #fmt["%.0f", 3.14159]; assert "99" == #fmt["%.0f", 98.5]; assert "7.0000" == #fmt["%.4f", 6.999999999]; assert "3.141590000" == #fmt["%.9f", 3.14159]; } ``` | ||||
| 2012-04-19 | Disallow rebinding / matching against consts in alts | Tim Chevalier | -3/+3 | |
| As per Issue #1193. Closes #1193. I had to rename a few variables ("info" and "epsilon") to avoid clashing with in-scope constants, which is responsible for all the changes other than resolve and issue-1193.rs. | ||||
| 2012-04-15 | add inf/-inf/NaN parsing to float::from_str | Grahame Bowland | -0/+18 | |
| add tests for "inf"/"-inf"/"NaN" conversion add tests for "-0." -> -0., "0." -> 0. | ||||
| 2012-04-08 | core: Add tests for the string repr of infinity | Brian Anderson | -0/+6 | |
| 2012-04-09 | write out "inf"/"-inf" in float::to_str_common | Grahame Bowland | -0/+2 | |
| 2012-03-15 | Comments only: associate FIXMEs in float libs with issue numbers | Tim Chevalier | -2/+3 | |
| 2012-03-13 | Name types after their modules instead of 't' | Brian Anderson | -2/+0 | |
| 2012-03-09 | core: Convert to rustdoc | Brian Anderson | -55/+45 | |
| 2012-03-07 | add mutability annotations to libcore | Niko Matsakis | -16/+16 | |
| 2012-02-28 | expose float::pow_with_uint. | Erick Tryzelaar | -6/+7 | |
| 2012-02-23 | (core::str) remove len_bytes alias | Kevin Cantu | -1/+1 | |
| 2012-02-22 | Make the various from_str functions return options | Marijn Haverbeke | -46/+42 | |
| So that they can be used with user input without causing task failures. Closes #1335 | ||||
| 2012-02-21 | core: Fix to_str_exact for floats with no decimal component | Brian Anderson | -1/+7 | |
| 2012-02-12 | (core::str) rename byte_len -> len_bytes and rename char_len -> len | Kevin Cantu | -1/+1 | |
| 2012-02-11 | core: Fill out missing functions for basic types | Brian Anderson | -1/+1 | |
| 2012-02-11 | core: Add modules for remaining scalar types | Brian Anderson | -0/+2 | |
| 2012-02-07 | core: Export floor functions | Brian Anderson | -1/+1 | |
| 2012-01-30 | Change all ternary ops to if/then/else | Paul Woolcock | -1/+1 | |
| All the files below had at least one instance of the ternary operator present in the source. All have been changed to the equivalent if/then/else expression. | ||||
| 2012-01-17 | libcore: Move core tests into libcore | Brian Anderson | -0/+81 | |
| 2012-01-05 | Moved generic float::min, max to core::math and cleaned up some imports | Stefan Plantikow | -15/+2 | |
| 2012-01-05 | Merge branch 'master' into kmath | Stefan Plantikow | -2/+21 | |
| 2011-12-31 | core: added support for bessel functions | Stefan Plantikow | -2/+3 | |
| 2011-12-31 | core: killed all math wrappers | Stefan Plantikow | -515/+3 | |
| 2011-12-31 | Trying to remove wrappers from float | Stefan Plantikow | -4/+46 | |
| 2011-12-31 | added useful constants to math | Stefan Plantikow | -0/+30 | |
| 2011-12-22 | Remove trivial cast checker | Marijn Haverbeke | -27/+27 | |
| I consider the added complexity not justified at this point, and it interacts badly with the patches for issue #828. Feel free to discuss. | ||||
| 2011-12-16 | Make 1.f parse as a field access on the integer 1 | Marijn Haverbeke | -2/+2 | |
| A dot is only considered part of a number when not followed by a letter Closes #1306 | ||||
| 2011-12-14 | Moved std::math to std::core | Stefan Plantikow | -0/+387 | |
| - merges math and float into core::float - Splits core::ctypes into core::ctypes and core::mtypes - cmath is not exported - stdtest::math passes | ||||
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -0/+343 | |
