summary refs log tree commit diff
path: root/src/libcollections/vec_deque.rs
AgeCommit message (Expand)AuthorLines
2017-01-25std: Stabilize APIs for the 1.16.0 releaseAlex Crichton-10/+2
2017-01-14have RangeArgument return a Bound<&T> from each of its methodsdjzin-2/+11
2017-01-10Rollup merge of #38664 - apasel422:may-dangle, r=pnkfelixSeo Sanghyeon-2/+1
2017-01-09Auto merge of #38581 - frewsxcv:vecdequeue-insert, r=GuillaumeGomezbors-8/+12
2016-12-28Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]`Andrew Paseltiner-2/+1
2016-12-26Clarify behavior of `VecDeque::insert`.Corey Farwell-8/+12
2016-12-20run rustfmt on libcollections folderSrinivas Reddy Thatiparthy-48/+35
2016-12-04collections: Simplify VecDeque::is_emptyUlrik Sverdrup-4/+16
2016-10-25Special case .fold() for VecDeque's iteratorsUlrik Sverdrup-20/+54
2016-10-01std: Correct stability attributes for some implementationsOliver Middleton-4/+4
2016-09-23Minor `VecDeque` doc examples cleanup.Corey Farwell-5/+5
2016-09-11Documentation for default types modifiedathulappadan-1/+1
2016-09-11Documentation of what does for each typeathulappadan-0/+1
2016-08-24Remove needless imports in `libcollections`.Jeffrey Seyfried-3/+0
2016-08-23Auto merge of #35656 - Stebalien:fused, r=alexcrichtonbors-1/+14
2016-08-19std: Stabilize APIs for the 1.12 releaseAlex Crichton-4/+1
2016-08-18Add a FusedIterator trait.Steven Allen-1/+14
2016-08-04Made vec_deque::Drain, hash_map::Drain, and hash_set::Drain covariantThomas Garcia-3/+4
2016-07-22Update VecDeque documentation to specify direction of index 0 (#34920)abhi-0/+16
2016-07-16Add examples for VecDequeGuillaume Gomez-1/+71
2016-04-20Auto merge of #32951 - LukasKalbertodt:collection_contains_rfc1552, r=brsonbors-0/+11
2016-04-18Added From<VecDeque<T>> for Vec<T> and From<Vec<T>> for VecDeque<T>David Hewitt-0/+179
2016-04-14Add `contains` to `VecDeque` and `LinkedList` (+ tests)Lukas Kalbertodt-0/+11
2016-03-28style: Use `iter` for IntoIterator parameter namesKamal Marhubi-2/+2
2016-03-02Use ptr::drop_in_place in VecDeque::dropUlrik Sverdrup-1/+6
2016-01-27collections: Use slices parts in PartialEq for VecDequeUlrik Sverdrup-1/+33
2016-01-27collections: Hash VecDeque in its slice partsUlrik Sverdrup-3/+3
2016-01-18Auto merge of #30956 - KiChjang:move-tests-to-libcollectionstest, r=blussbors-30/+0
2016-01-17Move zst test from libcollections to src/testKeith Yeung-30/+0
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-2/+4
2015-12-18Auto merge of #30272 - tshepang:doc-drain, r=blussbors-7/+11
2015-12-17doc: improve drain examples and remove secondary info from leading paragraphTshepang Lekhonkhobe-7/+11
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-20/+2
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-10/+4
2015-11-25Auto merge of #30017 - nrc:fmt, r=brsonbors-307/+394
2015-11-24rustfmt libcollectionsNick Cameron-307/+394
2015-11-20Rename #[deprecated] to #[rustc_deprecated]Vadim Petrochenkov-2/+2
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+3
2015-11-03Correct incorrect assertion in VecDeque::wrap_copyMichael Layzell-7/+9
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-37/+36
2015-10-20Auto merge of #27723 - mystor:vecdeque_drain_range, r=blussbors-14/+274
2015-10-08Add unsafe Send and Sync impls to VecDeque's Drain<T>Michael Layzell-0/+3
2015-10-06Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed.Felix S. Klock II-0/+1
2015-09-27Rollup merge of #28682 - apasel422:features, r=steveklabnikManish Goregaokar-4/+0
2015-09-26Remove unnecessary `#![feature]` attributesAndrew Paseltiner-4/+0
2015-09-25Simplify `Debug` for `{EnumSet, VecDeque}`Andrew Paseltiner-8/+1
2015-09-22Implement drain over a range for VecDequeMichael Layzell-14/+271
2015-09-19VecDeque: Use power of two capacity even for zero sized typesUlrik Sverdrup-1/+40
2015-09-11std: Stabilize/deprecate features for 1.4Alex Crichton-11/+3
2015-08-31Add missing stability attributes to VecDeque.Eli Friedman-2/+8