summary refs log tree commit diff
path: root/src/libcollections/vec.rs
AgeCommit message (Expand)AuthorLines
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-6/+5
2015-12-18Auto merge of #30272 - tshepang:doc-drain, r=blussbors-6/+11
2015-12-17doc: improve drain examples and remove secondary info from leading paragraphTshepang Lekhonkhobe-6/+11
2015-12-17Remove unused importsJeffrey Seyfried-1/+1
2015-12-09doc: these are just renames, so avoid duplicationTshepang Lekhonkhobe-15/+1
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-9/+45
2015-11-24rustfmt libcollectionsNick Cameron-57/+71
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+6
2015-11-12libcollections: deny warnings in doctestsKevin Butler-0/+1
2015-11-08Fix outdated comment in Vec::from_iterStepan Koltsov-2/+1
2015-11-06Auto merge of #29643 - petrochenkov:stability5, r=alexcrichtonbors-1/+0
2015-11-06Remove stability annotations from trait impl itemsVadim Petrochenkov-1/+0
2015-11-05vec: Remove old comment in Vec::dropUlrik Sverdrup-4/+0
2015-10-30don't use drop_in_place as an intrinsicAlexis Beingessner-2/+2
2015-10-30Auto merge of #29458 - tshepang:better, r=alexcrichtonbors-2/+3
2015-10-29doc: fix and expand explanationTshepang Lekhonkhobe-2/+3
2015-10-28Update docstring for truncateCameron Sun-2/+2
2015-10-25Auto merge of #29254 - alexcrichton:stabilize-1.5, r=brsonbors-5/+1
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-5/+1
2015-10-23Unsafety -> Safety in doc headingsSteve Klabnik-1/+1
2015-10-20Add dropck unsafe escape hatch (UGEH) to vec::IntoIter.Felix S. Klock II-0/+1
2015-10-06Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed.Felix S. Klock II-0/+1
2015-10-01fixup wordingAlexis Beingessner-1/+1
2015-10-01flesh out what Vec actually guaranteesAlexis Beingessner-0/+75
2015-09-30Auto merge of #28731 - bluss:by-ref, r=alexcrichtonbors-1/+1
2015-09-29Remove redundant uses of Iterator::by_ref()Ulrik Sverdrup-1/+1
2015-09-27Auto merge of #28689 - Manishearth:rollup, r=Manishearthbors-2/+0
2015-09-27Auto merge of #28663 - bluss:vec-as-mut, r=alexcrichtonbors-0/+14
2015-09-26Remove unnecessary `#![feature]` attributesAndrew Paseltiner-2/+0
2015-09-25Add AsMut<Vec<T>> for Vec<T>Ulrik Sverdrup-0/+7
2015-09-25Implement AsMut for VecUlrik Sverdrup-0/+7
2015-09-24Optimize `Vec::clone_from`Andrew Paseltiner-8/+4
2015-09-20Add comment.whitequark-0/+2
2015-09-20Fix style.whitequark-3/+5
2015-09-20Do not drop_in_place elements of Vec<T> if T doesn't need droppingwhitequark-3/+5
2015-09-11std: Stabilize/deprecate features for 1.4Alex Crichton-8/+2
2015-09-03Use `null()`/`null_mut()` instead of `0 as *const T`/`0 as *mut T`Vadim Petrochenkov-1/+1
2015-08-15collections: Add issues for unstable featuresAlex Crichton-8/+15
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-326/+15
2015-08-11Register new snapshotsAlex Crichton-3/+0
2015-08-09Replace many uses of `mem::transmute` with more specific functionsTobias Bucher-1/+1
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+3
2015-07-29Rollup merge of #27375 - niconii:vec-docs, r=GankroSteve Klabnik-1/+8
2015-07-29Rollup merge of #27326 - steveklabnik:doc_show_use, r=GankroSteve Klabnik-6/+11
2015-07-28Make docs for Vec::push() use vec! with square bracketsNicolette Verlinden-1/+1
2015-07-28Mention vec![x; len] syntax in Vec docsNicolette Verlinden-0/+7
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-0/+4
2015-07-27Show appropriate feature flags in docsSteve Klabnik-6/+11
2015-07-17Auto merge of #26955 - Gankro:raw-vec, r=bluss,alexcrichtonbors-246/+44
2015-07-17Add RawVec to unify raw Vecish codeAlexis Beingessner-246/+44