about summary refs log tree commit diff
path: root/src/libcore/hash.rs
AgeCommit message (Expand)AuthorLines
2013-05-13Remove re-exports from libcore/core.rcAlex Crichton-0/+2
2013-05-09libstd: rename vec::each(var) to var.eachYoungmin Yoo-1/+0
2013-05-09libcore: rename vec::each(variable) to variable.eachYoungmin Yoo-2/+2
2013-05-08libcore: Fix tests.Patrick Walton-3/+3
2013-05-08libcore: Remove mutable fields from hashPatrick Walton-85/+123
2013-04-16libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ...Huon Wilson-152/+158
2013-04-08Removing no longer needed unsafe blocksAlex Crichton-36/+26
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-22/+22
2013-03-28Removing unused importsAlex Crichton-1/+1
2013-03-26librustc: Remove all uses of the old `[T * N]` fixed-length vector syntaxPatrick Walton-3/+3
2013-03-26libcore: Change `[const T]` to `const [T]` everywherePatrick Walton-3/+3
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-22/+20
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-22/+22
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-1/+1
2013-03-06Finish de-implicit-selifizng libcoreBen Striegel-3/+2
2013-03-05auto merge of #5233 : bstrie/rust/deimpselfcore, r=graydonbors-12/+13
2013-03-04De-implicit-self libcoreBen Striegel-12/+13
2013-03-04Remove unused imports throughout src/Alex Crichton-1/+0
2013-02-26Hoist macro defs out of inner functionJohn Clements-29/+33
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-2/+2
2013-02-15libcore: Get rid of `move`.Luqman Aden-3/+3
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-4/+4
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-02-13RIMOV core::hashBen Striegel-2/+2
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-4/+0
2013-02-03Converted libcore/uint-template.rs to the new string functions.Marvin Löbel-2/+2
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-2/+5
2012-12-24Convert core::io to use explicit self (for issue #4118 and issue #2004)gareth-6/+6
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29No longer parse the delimiters of the RHS of a macro as part of the expansion.Paul Stansifer-2/+2
2012-10-27Remove un-needed comparisons, suppress warningsTim Chevalier-2/+2
2012-10-20Remove old fixed-length vector syntaxBen Striegel-68/+68
2012-10-12Make moves explicit in core testsTim Chevalier-1/+1
2012-09-26libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, and...Patrick Walton-16/+13
2012-09-19Remove final bits of residual hokey-hash functions. Close #1616.Graydon Hoare-67/+20
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-2/+6
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially dem...Niko Matsakis-6/+2
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-2/+6
2012-09-18Replace uses of 'unchecked' with 'unsafe'Brian Anderson-5/+5
2012-09-12Document IterBytes, Eq, Cmp, Hash. Close #3449.Graydon Hoare-1/+24
2012-09-12fixup mutability of vec::each, make iter_bytes pureNiko Matsakis-2/+2
2012-09-10Make more moves explicit in libcoreTim Chevalier-2/+2
2012-09-07Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes.Graydon Hoare-15/+15
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-9/+9
2012-09-04libcore: "import" -> "use"Patrick Walton-3/+3
2012-08-30Migrate core::send_map to random, keyed hashes w/ hash::Hash trait.Graydon Hoare-1/+1
2012-08-30Start moving core::hash to support a Hash trait. Add to_bytes::IterBytes trait.Graydon Hoare-20/+102
2012-08-27Convert over some residual uses of #oldmacros.Graydon Hoare-18/+28
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-16/+16