about summary refs log tree commit diff
path: root/src/libstd/nil.rs
AgeCommit message (Collapse)AuthorLines
2013-08-14Methodyfied the string ascii extionsion functionsMarvin Löbel-57/+0
Added into_owned() method for vectors Added DoubleEnded Iterator impl to Option Renamed nil.rs to unit.rs
2013-08-10auto merge of #8404 : stepancheg/rust/zero-unit-inline, r=alexcrichtonbors-0/+2
Follow-up to #8155
2013-08-09Remove redundant Ord method impls.OGINO Masanori-6/+0
Basically, generic containers should not use the default methods since a type of elements may not guarantees total order. str could use them since u8's Ord guarantees total order. Floating point numbers are also broken with the default methods because of NaN. Thanks for @thestinger. Timespec also guarantees total order AIUI. I'm unsure whether extra::semver::Identifier does so I left it alone. Proof needed. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2013-08-09Add #[inline] to impl Zero for ()Stepan Koltsov-0/+2
Follow-up to #8155
2013-07-31Implement Zero for unitStepan Koltsov-0/+11
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-8/+8
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+50
This only changes the directory names; it does not change the "real" metadata names.