about summary refs log tree commit diff
path: root/src/libcore/array.rs
AgeCommit message (Expand)AuthorLines
2015-12-07Revert "PR #30130 Implement `Clone` for more arrays"Ulrik Sverdrup-28/+8
2015-12-06Auto merge of #30187 - alexcrichton:stabilize-1.6, r=aturonbors-0/+32
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-0/+32
2015-12-04Don't use an explicit temporary for cloning an arrayTobias Bucher-2/+1
2015-12-04Implement `Clone` for arrays without using slice patternsTobias Bucher-9/+9
2015-12-04Implement `Clone` for `[T; 0]` to `[T; 32]` if `T: Clone`Tobias Bucher-8/+29
2015-09-23Explain in comment why FixedSizeArray is unsafeAmit Aryeh Levy-0/+9
2015-09-19Make FixedSizeArray an unsafe traitAmit Aryeh Levy-2/+2
2015-09-03Implement `Borrow` for fixed-size arraysVadim Petrochenkov-0/+15
2015-08-31Implement `FixedSizeArray` for all fixed size arraysTobias Bucher-12/+12
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-1/+2
2015-08-14Implemented Default for arrays up to [T; 32].Without Boats-0/+24
2015-07-20std: Create separate docs for the primitivesBrian Anderson-1/+2
2015-06-17core: Split apart the global `core` featureAlex Crichton-8/+3
2015-03-25Implement AsRef and AsMut for fixed-sized arraysGleb Kozyrev-0/+19
2015-03-23rustdoc: Support for "array" primitiveTom Jakubowski-0/+2
2015-03-18Avoid metadata bloat by using trait FixedSizeArrayVadim Petrochenkov-0/+24
2015-02-23Rollup merge of #22320 - petrochenkov:eq, r=alexcrichtonManish Goregaokar-43/+8
2015-02-20Register new snapshotsAlex Crichton-7/+0
2015-02-20Tweaks to equality comparisons for slices/arrays/vectorsVadim Petrochenkov-43/+8
2015-02-18Round 3 test fixes and conflictsAlex Crichton-1/+1
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-14/+14
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-14/+14
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-2/+10
2015-02-17Register new snapshotsAlex Crichton-22/+0
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+2
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+24
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-2/+2
2015-02-02register snapshotsJorge Aparicio-3/+0
2015-01-30core: add the `IntoIterator` traitJorge Aparicio-0/+18
2015-01-30Remove FullRange from the prelude etc.Nick Cameron-0/+3
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-4/+3
2015-01-23grandfathered -> rust1Brian Anderson-7/+7
2015-01-23Set unstable feature names appropriatelyBrian Anderson-2/+2
2015-01-21Remove 'since' from unstable attributesBrian Anderson-2/+2
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-9/+10
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-3/+3
2015-01-19impl Hash for arraysJorge Aparicio-0/+7
2015-01-08Improvements to feature stagingBrian Anderson-1/+1
2015-01-07use slicing sugarJorge Aparicio-14/+14
2015-01-06rollup merge of #20607: nrc/kindsAlex Crichton-1/+1
2015-01-07markers -> markerNick Cameron-1/+1
2015-01-07falloutNick Cameron-4/+12
2015-01-07Replace full slice notation with index callsNick Cameron-14/+14
2015-01-07Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`Nick Cameron-1/+1
2015-01-02core: use assoc types in `Deref[Mut]`Jorge Aparicio-2/+2
2015-01-02More falloutNick Cameron-19/+19
2014-12-30Stabilize cmpAaron Turon-4/+6
2014-12-20Stabilize cloneAaron Turon-2/+1
2014-12-03Overload the `==` operatorJorge Aparicio-3/+24