aboutsummaryrefslogtreecommitdiff
path: root/src/lib/_int.rs
Commit message (Collapse)AuthorAgeFilesLines
* Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke2011-05-121-0/+62
| | | | This should be a snapshot transition.
* Rename std modules to be camelcasedMarijn Haverbeke2011-05-061-62/+0
| | | | (Have fun mergining your stuff with this.)
* Un-revert "Use different syntax for checks that matter to typestate", fixing ↵Patrick Walton2011-05-021-1/+1
| | | | | | the problem. This reverts commit d08b443fffb1181d8d45ae5d061412f202dd4118.
* Revert "Use different syntax for checks that matter to typestate"Graydon Hoare2011-05-021-1/+1
| | | | This reverts commit aa25f22f197682de3b18fc4c8ba068d1feda220f. It broke stage2, not sure why yet.
* Use different syntax for checks that matter to typestateTim Chevalier2011-05-021-1/+1
| | | | | | | | | | This giant commit changes the syntax of Rust to use "assert" for "check" expressions that didn't mean anything to the typestate system, and continue using "check" for checks that are used as part of typestate checking. Most of the changes are just replacing "check" with "assert" in test cases and rustc.
* Make some standard library pieces no longer dependent on mutable parameters, ↵Patrick Walton2011-03-181-5/+6
| | | | which rustc doesn't support
* Add _int.powBrian Anderson2011-03-141-0/+17
|
* Remove redundant imports in lib (rustc doesn't like 'std' as a synonym for ↵Graydon Hoare2011-03-091-1/+0
| | | | root within std.rc anyway)
* Reformat standard library; no code changes.Graydon Hoare2010-09-221-10/+19
|
* Add _uint module to std, move some code around.Graydon Hoare2010-08-201-56/+2
|
* Add an int->str conversion function.Jeffrey Yasskin2010-08-061-10/+10
| | | | The test currently fails because string equality isn't implemented.
* Redo yesterday's buf_writer-wrapper in a less silly and convoluted way. Add ↵Roy Frostig2010-08-061-0/+44
| | | | integer stringifying functions to _int module.
* More stdlib hashmap bits (plus some drive-by extras).Roy Frostig2010-08-031-0/+5
|
* Switch machine-type lexemes to use suffixes. Remove support for foo(bar) as ↵Graydon Hoare2010-07-271-6/+6
| | | | a cast notation. Closes #129.
* Add a (coarse, first-pass) deque implementation to stdlib.Roy Frostig2010-07-201-0/+15
|
* The few and proud isolated bits from stdlib-work so far that don't break ↵Roy Frostig2010-06-281-0/+6
| | | | everything. Note util.rs hasn't yet been declared mod in the std crate. Don't do that yet, as it breaks make check.
* Populate tree.Graydon Hoare2010-06-231-0/+20