about summary refs log tree commit diff
path: root/src/libcore/slice.rs
AgeCommit message (Expand)AuthorLines
2014-10-07Rename slicing methodsNick Cameron-1/+62
2014-10-07Rename slice::SliceNick Cameron-4/+4
2014-10-07Use slice syntax instead of slice_to, etc.Nick Cameron-42/+33
2014-10-06Add example to doc for `slice::ImmutableSlice::binary_search`.Felix S. Klock II-2/+42
2014-10-02rollup merge of #16993 : dschatzberg/items-boundsAlex Crichton-2/+2
2014-10-02Revert "Use slice syntax instead of slice_to, etc."Aaron Turon-47/+89
2014-10-02Revert "Remove the `_` suffix from slice methods."Aaron Turon-58/+69
2014-10-02Revert "Put slicing syntax behind a feature gate."Aaron Turon-2/+2
2014-10-02Revert "Review and rebasing changes"Aaron Turon-3/+5
2014-10-02Add lifetime bounds on Items and MutItems.Dan Schatzberg-2/+2
2014-10-02Review and rebasing changesNick Cameron-5/+3
2014-10-02Put slicing syntax behind a feature gate.Nick Cameron-2/+2
2014-10-02Remove the `_` suffix from slice methods.Nick Cameron-69/+58
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-89/+47
2014-09-25Fallout from deprecationAaron Turon-0/+1
2014-09-25Stabilize mutable slice APIAaron Turon-239/+266
2014-09-22Fix deprecation warnings in check-docs.Victor Berger-2/+2
2014-09-19Implement slicing syntax.Nick Cameron-0/+58
2014-09-16Fallout from renamingAaron Turon-19/+19
2014-09-16Align with _mut conventionsAaron Turon-18/+71
2014-09-05Optimize Slice::reverseBrian Anderson-1/+6
2014-09-01auto merge of #16897 : japaric/rust/mut-slice-collection, r=alexcrichtonbors-0/+9
2014-08-31&mut [T] now implements Collection. Fixes #16896Jorge Aparicio-0/+9
2014-08-30rollup merge of #16842 : zsiciarz/masterAlex Crichton-5/+5
2014-08-30rollup merge of #16835 : michaelsproul/doc-slice-failureAlex Crichton-28/+33
2014-08-29Register new snapshotsAlex Crichton-59/+0
2014-08-29Updated mut_chunks doc comment to match argument name.Zbigniew Siciarz-5/+5
2014-08-29doc: Clarify slice failure conditions.Michael Sproul-28/+33
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-3/+58
2014-08-26Rebasing changesNick Cameron-0/+21
2014-08-26DST coercions and DST structsNick Cameron-1/+0
2014-08-18libsyntax: Remove the `use foo = bar` syntax from the language in favorPatrick Walton-1/+1
2014-08-13Address some review feedbackBrian Anderson-14/+12
2014-08-13core: Put stability attributes all over the slice moduleBrian Anderson-0/+72
2014-08-13core: Add binary_search and binary_search_elem methods to slices.Brian Anderson-0/+92
2014-08-13core: Rename ImmutableEqSlice to ImmutablePartialEqSliceBrian Anderson-2/+2
2014-08-13core: Rename MutableCloneableSlice::copy_from to clone_from_sliceBrian Anderson-2/+8
2014-08-13core: Deprecate ImmutableSlice::tailn and initnBrian Anderson-0/+4
2014-08-13core: Rename ImmutableSlice::unsafe_ref to unsafe_getBrian Anderson-0/+12
2014-08-13std: Rename slice::Vector to SliceBrian Anderson-12/+14
2014-08-13std: Rename various slice traits for consistencyBrian Anderson-12/+12
2014-08-01Add a split_at method to slice::ImmutableVectornham-4/+17
2014-07-05libcore: Fix Items iterator for zero sized types.Luqman Aden-12/+24
2014-06-30core: Remove the unnecessary 'traits' module from 'slice'Brian Anderson-49/+39
2014-06-30core: Reorganize slice module.Brian Anderson-458/+514
2014-06-29Implement RFC#28: Add PartialOrd::partial_cmpSteven Fackler-0/+6
2014-06-29Extract tests from libcore to a separate crateSteven Fackler-4/+0
2014-06-28Rename all raw pointers as necessaryAlex Crichton-14/+14
2014-06-24librustc: Remove the fallback to `int` from typechecking.Niko Matsakis-13/+13
2014-06-13added get_mut() for [T]bachm-0/+8