about summary refs log tree commit diff
path: root/src/libstd/cmp.rs
AgeCommit message (Expand)AuthorLines
2013-08-09Remove redundant Ord method impls.OGINO Masanori-6/+3
2013-08-04syntax: make #[deriving(TotalOrd)] lazy.Huon Wilson-1/+0
2013-08-03remove obsolete `foreach` keywordDaniel Micay-1/+1
2013-08-03make `for` parse as `foreach` doesDaniel Micay-1/+3
2013-07-25auto merge of #8030 : thestinger/rust/iterator, r=huonwbors-1/+0
2013-07-24rm default method lintDaniel Micay-1/+0
2013-07-23Fix some impls such that all supertraits are actually implemented.Michael Sullivan-0/+6
2013-07-15cmp: Use default methods in trait Eq, require only Eq::eqblake2-ppc-2/+4
2013-07-13cmp: Use default methods in trait Ord, only require Ord::ltblake2-ppc-8/+9
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-10/+10
2013-06-09cmp: remove duplicate free functionsDaniel Micay-30/+0
2013-05-30Require documentation by default for libstdAlex Crichton-0/+2
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+265
2013-05-06Move FuzzyEq trait into core::cmp and rename it to 'ApproxEq'Brendan Zabarauskas-102/+0
2013-05-02mod items need to be marked with `cfg(test)` not `test`.Felix S. Klock II-1/+1
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-10/+10
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-1/+1
2013-03-22libstd: Remove all uses of `pure` from libstd. rs=depurePatrick Walton-10/+10
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-10/+10
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-4/+4
2013-02-07auto merge of #4831 : bjz/rust/incoming, r=pcwaltonbors-9/+46
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-1/+0
2013-02-07Add type parameter for epsilon valueBrendan Zabarauskas-5/+42
2013-02-07Convert fuzzy_epsilon constant to upper case and make publicBrendan Zabarauskas-4/+4
2013-01-30librustc: Change `self` as a type to `Self` everywhere. r=brsonPatrick Walton-2/+2
2013-01-30rustc: make integral type inference transactional, close #3211, close #4401, ...Graydon Hoare-3/+3
2013-01-29Merge pull request #4676 from thestinger/fuzzyTim Chevalier-3/+3
2013-01-29fix FuzzyEqDaniel Micay-3/+3
2013-01-29Fix licenseck to allow 2012-2013 as the year rangeTim Chevalier-2/+2
2013-01-29implement fuzzy_eq with fuzzy_eq_epsDaniel Micay-4/+4
2013-01-28add a FuzzyEq method that accepts an epsilon valueDaniel Micay-1/+20
2013-01-28update FuzzyEq to explicit selfDaniel Micay-11/+10
2013-01-28fix std::cmp docstringDaniel Micay-1/+1
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ...Patrick Walton-0/+4
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-09-28std: Eliminate deprecated patternsBrian Anderson-1/+0
2012-09-27De-export std::{base64,cmp,par}. Part of #3583.Graydon Hoare-1/+1
2012-09-02std: warn(non_camel_case_types) everywhere. still some exceptionsBrian Anderson-1/+0
2012-08-31Remove deprecated modes from FuzzyEq in cmp.rsKevin Cantu-10/+12
2012-08-28CamelCasify lots of stdBen Striegel-4/+5
2012-08-08Convert impls to new syntaxBrian Anderson-3/+3
2012-08-01Convert ret to returnBrian Anderson-3/+3
2012-07-26core: Mark a bunch of numeric functions as purePatrick Walton-5/+5
2012-07-04convert doc-attributes to doc-comments using ./src/etc/sugarise-doc-comments....Gareth Daniel Smith-1/+1
2012-06-07std: Implement a fuzzy-equal interfacePatrick Walton-0/+33