summary refs log tree commit diff
path: root/src/libstd/vec.rs
AgeCommit message (Expand)AuthorLines
2013-09-25rustdoc: Change all code-blocks with a scriptAlex Crichton-18/+18
2013-09-21Document a few undocumented methos in VectorLuis de Bethencourt-0/+6
2013-09-17Document a few undocumented modules in libstdAlex Crichton-0/+2
2013-09-17std::at_vec: Fix segfault on overflow when resizing ~[@T]blake2-ppc-0/+8
2013-09-16std::vec: Add function vec::bytes::push_bytesblake2-ppc-0/+17
2013-09-16std::vec: Fix hazards with uint overflows in unsafe codeblake2-ppc-6/+29
2013-09-12std: Remove Zero impl from vecErick Tryzelaar-21/+4
2013-09-12std: Add Default implementation for vecsErick Tryzelaar-0/+14
2013-09-12std: rename Option::unwrap_or_default() to unwrap_or()Erick Tryzelaar-1/+1
2013-09-09auto merge of #9062 : blake2-ppc/rust/vec-iterator, r=alexcrichtonbors-207/+239
2013-09-10std::at_vec and vec: Unify build_sized, build_sized_opt into buildblake2-ppc-37/+5
2013-09-10std::vec: Remove the function same_lengthblake2-ppc-5/+0
2013-09-10std::vec: Update module doc textblake2-ppc-19/+60
2013-09-10std::vec: Replace each_permutation with a new Permutations iteratorblake2-ppc-119/+165
2013-09-10std::vec: Change fn unzip to take an iterator argumentblake2-ppc-27/+9
2013-09-09rename `std::iterator` to `std::iter`Daniel Micay-10/+10
2013-09-05std: Remove push_fast from OwnedVector. Closes #8769Brian Anderson-22/+21
2013-09-03auto merge of #8884 : blake2-ppc/rust/exact-size-hint, r=huonwbors-42/+5
2013-09-01std::iterator: Use ExactSize, inheriting DoubleEndedIteratorblake2-ppc-2/+2
2013-09-01std::iterator: Add back .rposition() testblake2-ppc-10/+0
2013-08-31repr: remove trailing {} from unit-like structsDaniel Micay-2/+2
2013-08-31repr: print the name of structsDaniel Micay-2/+4
2013-08-30std: Implement .rposition() on double-ended iterators with known sizeblake2-ppc-34/+4
2013-08-30std::iterator: Introduce trait ExactSizeHintblake2-ppc-0/+3
2013-08-27Remove offset_inbounds for an unsafe offset functionAlex Crichton-4/+4
2013-08-27librustc: Remove `&const` and `*const` from the language.Patrick Walton-8/+1
2013-08-27vec: implement `DeepClone`Daniel Micay-2/+9
2013-08-26std: Make vec::from_elem failure-safeBrian Anderson-4/+30
2013-08-26std: Make vec::from_fn failure-safeBrian Anderson-4/+8
2013-08-24auto merge of #8701 : brson/rust/issue-8698, r=thestingerbors-8/+4
2013-08-24std: Make vec::push_all_move call reserve_at_leastBrian Anderson-1/+1
2013-08-23Fix some vector function failure tests. Closes #8698Brian Anderson-8/+4
2013-08-22Disabled broken tests in std::vec.Vadim Chugunov-0/+4
2013-08-22Enabled unit tests in std and extra.Vadim Chugunov-20/+0
2013-08-21auto merge of #8604 : kballard/rust/iter-size-hint, r=graydonbors-1/+69
2013-08-20vec: add `shrink_to_fit`Daniel Micay-0/+26
2013-08-18Implement .size_hint() on new vec iteratorsKevin Ballard-1/+69
2013-08-16doc: correct spelling in documentation.Huon Wilson-2/+2
2013-08-15vec: rm redundant is_empty implementationsDaniel Micay-12/+0
2013-08-15vec: rm obsolete zip and zip_sliceDaniel Micay-41/+1
2013-08-15auto merge of #8490 : huonw/rust/fromiterator-extendable, r=catamorphismbors-4/+4
2013-08-15std: Move the iterator param on FromIterator and Extendable to the method.Huon Wilson-4/+4
2013-08-14Methodyfied the string ascii extionsion functionsMarvin Löbel-3/+31
2013-08-12Forbid pub/priv where it has no effectAlex Crichton-8/+8
2013-08-12auto merge of #8400 : blake2-ppc/rust/seq-ord, r=cmrbors-24/+22
2013-08-11vec: optimize the Add implementationDaniel Micay-5/+14
2013-08-10std: Rename Iterator.transform -> .mapErick Tryzelaar-3/+3
2013-08-10Mass rename of .consume{,_iter}() to .move_iter()Erick Tryzelaar-20/+20
2013-08-08std::vec: Fix typo in fn neblake2-ppc-1/+1
2013-08-08std::vec: Use iterator::order functions for Eq, Ord, TotalOrd, TotalEqblake2-ppc-24/+22