about summary refs log tree commit diff
path: root/src/libextra/enum_set.rs
AgeCommit message (Collapse)AuthorLines
2014-02-20move enum_set to libcollections. #8784HeroesGrave-294/+0
2014-02-17Rename Bitwise::population_count to Bitwise::count_ones and add ↵Brendan Zabarauskas-1/+1
Bitwise::count_zeros These are inspired by the [functions in the Julia standard library](http://docs.julialang.org/en/release-0.2/stdlib/base/#Base.count_ones).
2014-01-21Remove unnecessary parentheses.Huon Wilson-1/+1
2014-01-18Rename iterators for consistencyPalmer Cox-7/+7
Rename existing iterators to get rid of the Iterator suffix and to give them names that better describe the things being iterated over.
2014-01-16Merge Bitwise and BitCount traits and remove from prelude, along with BoundedBrendan Zabarauskas-0/+2
One less trait in std::num, and three less exported in the prelude.
2013-12-27librustc: Implement coercion for traits.Luqman Aden-1/+1
2013-10-29Assorted cleanups suggested by reviewers.Jed Davis-1/+2
2013-10-29Add repr attributes in various places that need them.Jed Davis-1/+1
2013-10-15Require module documentation with missing_docAlex Crichton-0/+5
Closes #9824
2013-09-09rename `std::iterator` to `std::iter`Daniel Micay-2/+0
The trait will keep the `Iterator` naming, but a more concise module name makes using the free functions less verbose. The module will define iterables in addition to iterators, as it deals with iteration in general.
2013-08-16doc: correct spelling in documentation.Huon Wilson-1/+1
2013-08-12Forbid pub/priv where it has no effectAlex Crichton-4/+4
Closes #5495
2013-08-06Move EnumSet into libextraSangeun Kim-0/+288