about summary refs log tree commit diff
path: root/src/libcollections/bitv.rs
AgeCommit message (Expand)AuthorLines
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
2014-07-09Register new snapshotsAlex Crichton-6/+1
2014-07-08std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`.Richo Healey-9/+9
2014-07-07librustc (RFC #34): Implement the new `Index` and `IndexMut` traits.Patrick Walton-15/+49
2014-07-02collections::bitv: clean up and unit test `BitvSet::is_subset`Andrew Poelstra-55/+36
2014-07-02collections::bitv: change constructors for `Bitv` and `BitvSet`Andrew Poelstra-69/+81
2014-07-02collections::bitv: Implement several methods for `Bitv` and `BitvSet`Andrew Poelstra-41/+295
2014-07-02collections::bitv: Add documentation and #[inline]'sAndrew Poelstra-2/+26
2014-07-02collections::bitv: replace internal iterators with external onesAndrew Poelstra-54/+88
2014-07-02collections::bitv: remove some ancient interfacesAndrew Poelstra-24/+3
2014-07-02collections::bitv: correct use of Vec<T>::growAndrew Poelstra-2/+11
2014-07-02collections::bitv: ensure correct masking behaviourAndrew Poelstra-83/+87