summary refs log tree commit diff
path: root/src/libcollectionstest
AgeCommit message (Expand)AuthorLines
2016-08-22Make `vec::IntoIter` covariant againAndrew Paseltiner-1/+2
2016-08-22std: Stabilize APIs for the 1.12 releaseAlex Crichton-3/+0
2016-08-11Introduce `as_mut_slice` method on `std::vec::IntoIter` struct.Corey Farwell-0/+11
2016-08-11Introduce `as_slice` method on `std::vec::IntoIter` struct.Corey Farwell-0/+13
2016-07-30Rollup merge of #35049 - knight42:add-test, r=alexcrichtonManish Goregaokar-0/+11
2016-07-28Auto merge of #34485 - tbu-:pr_unicode_debug_str, r=alexcrichtonbors-2/+18
2016-07-28Rename `char::escape` to `char::escape_debug` and add tracking issueTobias Bucher-11/+11
2016-07-28Add test for string AddAssignKnight-0/+11
2016-07-26Restore `char::escape_default` and add `char::escape` insteadTobias Bucher-1/+15
2016-07-23Escape fewer Unicode codepoints in `Debug` impl of `str`Tobias Bucher-4/+6
2016-07-21Readding lifetime parameters and removing allocationThomas Garcia-2/+2
2016-07-21Make vec::Drain and binary_heap::Drain covariantThomas Garcia-0/+12
2016-07-03std: Stabilize APIs for the 1.11.0 releaseAlex Crichton-4/+0
2016-06-21implemented peek_mut and unit testsNathan Moos-0/+19
2016-06-09clean up for test casesSrinivas Reddy Thatiparthy-14/+14
2016-06-09remove redundant assert statementsSrinivas Reddy Thatiparthy-2/+0
2016-06-01Auto merge of #33947 - xosmig:btree_split_off, r=gereeterbors-0/+127
2016-06-01Implement split_off for BTreeMap and BTreeSet (RFC 509)Andrey Tonkih-0/+127
2016-05-30std: Clean out old unstable + deprecated APIsAlex Crichton-59/+0
2016-05-27Auto merge of #33795 - srinivasreddy:lib_coll_test, r=nrcbors-405/+442
2016-05-24std: Stabilize APIs for the 1.10 releaseAlex Crichton-2/+0
2016-05-24format with [rustfmt_skip] and addressed a few commentsSrinivas Reddy Thatiparthy-80/+19
2016-05-22run rustfmt on libcollections test moduleSrinivas Reddy Thatiparthy-424/+522
2016-05-09Utilize `Result::unwrap_err` in more places.Corey Farwell-1/+1
2016-04-22Implement `append` for b-trees.Johannes Oertel-0/+77
2016-04-20Auto merge of #32951 - LukasKalbertodt:collection_contains_rfc1552, r=brsonbors-0/+28
2016-04-17Auto merge of #32987 - xosmig:binary_heap_extension, r=apasel422bors-0/+33
2016-04-16Auto merge of #32977 - alexcrichton:ignore-panics, r=brsonbors-1/+1
2016-04-16collections: add append and extend specialization for binary heapAndrey Tonkih-0/+33
2016-04-15std: Change String::truncate to panic lessAlex Crichton-1/+1
2016-04-15Auto merge of #32851 - apasel422:spec-extend, r=alexcrichtonbors-0/+19
2016-04-14Rollup merge of #32869 - bluss:char-boundary-test, r=brsonSteve Klabnik-0/+16
2016-04-14Add `contains` to `VecDeque` and `LinkedList` (+ tests)Lukas Kalbertodt-0/+28
2016-04-14Specialize `Extend` to `append` for `{LinkedList, Vec}`Andrew Paseltiner-0/+19
2016-04-11std: Stabilize APIs for the 1.9 releaseAlex Crichton-3/+6
2016-04-10Add test for is_char_boundaryUlrik Sverdrup-0/+16
2016-04-05Add test for [u8]'s Ord (and fix the old test for ord)Ulrik Sverdrup-6/+36
2016-04-01Implement `values_mut` on `BTreeMap`.Corey Farwell-0/+16
2016-03-28Rollup merge of #32177 - srinivasreddy:remove_integer_suffixes, r=steveklabnikSteve Klabnik-4/+4
2016-03-22std: Change `encode_utf{8,16}` to return iteratorsAlex Crichton-6/+4
2016-03-14Expose the key of Entry variants for HashMap and BTreeMap.Stu Black-0/+37
2016-03-12std: Clean out deprecated APIsAlex Crichton-13/+0
2016-03-11removed integer suffixes in libcollections and libcollectionstestsrinivasreddy-4/+4
2016-03-07mk: Distribute fewer TARGET_CRATESAlex Crichton-9/+0
2016-03-05Fix panic on string slicing error to truncate the stringUlrik Sverdrup-0/+20
2016-03-01Changed `std::pattern::Pattern` impl on `&'a &'a str` to `&'a &'b str`Marvin Löbel-0/+13
2016-02-29std: Stabilize APIs for the 1.8 releaseAlex Crichton-3/+2
2016-02-26Auto merge of #31834 - ubsan:copy_from_slice, r=alexcrichtonbors-0/+25
2016-02-25Add unstable copy_from_sliceNicholas Mazzuca-0/+25
2016-02-17Implement `Clone` for `std::vec::IntoIter`Tobias Bucher-0/+18