about summary refs log tree commit diff
path: root/src/libcollections/ring_buf.rs
AgeCommit message (Expand)AuthorLines
2015-02-18Implement RFC 580Aaron Turon-2876/+0
2015-02-17Register new snapshotsAlex Crichton-33/+0
2015-02-17Test fixes and rebase conflictsAlex Crichton-5/+8
2015-02-17rollup merge of #22457: steveklabnik/gh22361Alex Crichton-3/+5
2015-02-17Clarify RingBuf documentation.Steve Klabnik-3/+5
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+3
2015-02-17Rollup merge of #22313 - japaric:iter, r=aturonManish Goregaokar-0/+36
2015-02-15Auto merge of #22058 - Gankro:all-the-impls, r=huonwbors-0/+151
2015-02-14naive RingBuf::append implAlexis-1/+50
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+36
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-3/+3
2015-02-07add split_off to RingBufAlexis-0/+102
2015-02-07Don't use std:: paths in syntax extensions when compiling a #![no_std] crateKeegan McAllister-2/+2
2015-02-06make `IndexMut` a super trait over `Index`Jorge Aparicio-2/+0
2015-02-07fix outdated docsAlexis-1/+1
2015-02-05remove int_uint feature from libcollectionsAlexis-2/+2
2015-02-05remove unecessary lifetimes from a bunch of collections codeAlexis-6/+6
2015-02-05misc collections code cleanupAlexis-111/+103
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-01-30Test fixes and rebase conflictsAlex Crichton-11/+11
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-123/+123
2015-01-30s/while let/for/g now that #21245 has been fixedJorge Aparicio-6/+2
2015-01-30fix falloutJorge Aparicio-3/+7
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-1/+25
2015-01-30Remove all `i` suffixesTobias Bucher-123/+123
2015-01-29s/Show/Debug/gJorge Aparicio-3/+3
2015-01-29fix inference falloutJorge Aparicio-4/+4
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-2/+2
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-55/+55
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-12/+12
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-5/+5
2015-01-23grandfathered -> rust1Brian Anderson-57/+57
2015-01-23Set unstable feature names appropriatelyBrian Anderson-8/+8
2015-01-21Remove 'since' from unstable attributesBrian Anderson-8/+8
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-65/+73
2015-01-21rollup merge of #21258: aturon/stab-3-indexAlex Crichton-1/+1
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-4/+4
2015-01-17Remove unnecessary explicit conversions to *const Twe-3/+3
2015-01-07rollup merge of #20721: japaric/snapAlex Crichton-1/+1
2015-01-07use slicing sugarJorge Aparicio-1/+1
2015-01-07std: Stabilize the std::hash moduleAlex Crichton-4/+4
2015-01-06More test fixesAlex Crichton-8/+2
2015-01-06rollup merge of #20607: nrc/kindsAlex Crichton-1/+1
2015-01-06rollup merge of #20481: seanmonstar/fmt-show-stringAlex Crichton-2/+2
2015-01-07markers -> markerNick Cameron-3/+3
2015-01-07falloutNick Cameron-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-2/+2