about summary refs log tree commit diff
path: root/src/libcollections/bitv.rs
AgeCommit message (Expand)AuthorLines
2014-11-02refactor libcollections as part of collection reformAlexis Beingessner-2761/+0
2014-11-01collections: Remove all collections traitsAlex Crichton-52/+62
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-10/+11
2014-10-16Removes useless confs from bitv.rsgamazeps-3/+0
2014-10-14auto merge of #18018 : gamazeps/rust/isuue16736, r=cmrbors-104/+105
2014-10-14Switches from uint to u32 in BitV and BitVSetFelix Raimundo-104/+105
2014-10-13rollup merge of #17970 : nodakai/cleanup-warningsAlex Crichton-1/+1
2014-10-13rollup merge of #17888 : gmfawcett/patch-1Alex Crichton-1/+1
2014-10-13Clean up rustc warnings.NODA, Kai-1/+1
2014-10-09In sieve example, end iteration soonerGraham Fawcett-1/+1
2014-10-08Clean up the implementations of Bitv and BitvSet.Kasey Carrothers-57/+131
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-1/+1
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-1/+1
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-1/+1
2014-09-21Fix fallout from Vec stabilizationAlex Crichton-2/+2
2014-09-16Fallout from renamingAaron Turon-5/+5
2014-09-03bitv: add larger tests, better benchmarks & remove dead code.Huon Wilson-22/+29
2014-08-26Use temp vars for implicit coercion to ^[T]Nick Cameron-1/+1
2014-08-21bitv: make sure benchmarks run long enoughVinzent Steinberg-7/+19
2014-08-21bitv: make benchmarks always return a valueVinzent Steinberg-8/+11
2014-08-19auto merge of #16241 : P1start/rust/doc-fixes, r=alexcrichtonbors-50/+55
2014-08-19auto merge of #16582 : Gankro/rust/bitv, r=alexcrichtonbors-26/+41
2014-08-19A few minor documentation fixesP1start-50/+55
2014-08-18Fixing bitvset is_disjoint, fixes #16587Alexis Beingessner-1/+19
2014-08-18Refactor BitV internals to not use macro, reduce duplicationAlexis Beingessner-25/+22
2014-08-18auto merge of #16559 : Gankro/rust/bitv, r=pcwaltonbors-3/+114
2014-08-17Correct internal BitvSet 0-padding, fixes #16542Alexis Beingessner-3/+114
2014-08-17auto merge of #16550 : kaseyc/rust/fix_documentation_error, r=alexcrichtonbors-1/+1
2014-08-16Fix an error in a code sample in bitv.rsKasey Carrothers-1/+1
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-2/+1
2014-08-12Deprecation fallout in libcollectionsAaron Turon-7/+7
2014-08-02auto merge of #16180 : jbcrail/rust/fix-comments, r=steveklabnikbors-1/+1
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-08-01collections: Implement FromIterator/Extendable for BitvSetnham-1/+27
2014-07-28Implement Ord for TrieMap/TrieSet/SmallIntMap/Bitv/BitvSetnham-1/+8
2014-07-28Implement PartialOrd for Bitv and BitvSetnham-1/+40
2014-07-23Remove kludgy imports from vec! macroBrian Anderson-1/+1
2014-07-23collections: Move push/pop to MutableSeqBrian Anderson-1/+1
2014-07-21Simplify and cleanup bitv examples.Jonas Hietala-74/+120
2014-07-21Describe BitPositions and TwoBitPositions.Jonas Hietala-0/+2
2014-07-21Polish bitv docs.Jonas Hietala-39/+44
2014-07-21Main bitv example: prime sieve.Jonas Hietala-0/+49
2014-07-21Move intersection above difference and symmetric_differance.Jonas Hietala-29/+29
2014-07-21Document BitvSet.Jonas Hietala-19/+297
2014-07-21Document Bitv.Jonas Hietala-94/+307
2014-07-21Group union, intersect and difference in Bitv.Jonas Hietala-22/+22
2014-07-21Place union as the first function, for consistency.Jonas Hietala-12/+12
2014-07-21Move in-place functions below their iterator variants.Jonas Hietala-24/+24
2014-07-10auto merge of #15556 : alexcrichton/rust/snapshots, r=brsonbors-6/+1
2014-07-09libcollections: Use iterators instead of old-style loops.Luqman Aden-34/+10