about summary refs log tree commit diff
path: root/src/libcore/array.rs
AgeCommit message (Expand)AuthorLines
2019-08-01FixedSizeArray: Add missing links in doc comments.Bruce Mitchener-1/+4
2019-07-28Fix `cfg(parallel_compiler)` modeVadim Petrochenkov-2/+2
2019-07-28Deny `unused_lifetimes` through rustbuildVadim Petrochenkov-5/+5
2019-07-25Remove `cfg(bootstrap)` code for array implementationsLukas Kalbertodt-433/+240
2019-07-07Use const generics for array impls, restricted to 0..=32Scott McMurray-0/+320
2019-05-11Auto merge of #60318 - jethrogb:jb/try-from-slice-to-infallible, r=sfacklerbors-1/+8
2019-05-09Stabilize and re-export core::arrayYuki OKUSHI-4/+6
2019-04-29impl From<Infallible> for TryFromSliceErrorJethro Beekman-1/+8
2019-04-19libcore: deny more...Mazdak Farrokhzad-2/+2
2019-04-18libcore => 2018Taiki Endo-7/+7
2019-03-09Use lifetime contravariance to elide more lifetimes in core+alloc+stdScott McMurray-1/+1
2019-02-13Stabilize TryFrom and TryIntoSimon Sapin-4/+4
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-25Add TryFrom<&[T]> for [T; $N] where T: CopySimon Sapin-0/+9
2018-04-20Revert "Stabilize the TryFrom and TryInto traits"Felix S. Klock II-3/+3
2018-03-26Stabilize the TryFrom and TryInto traitsSimon Sapin-3/+3
2017-09-29Pass formatter in TryFromSliceError Display implNikolai Vazquez-1/+1
2017-09-29Make TryFromSliceError::__description unstableNikolai Vazquez-0/+4
2017-09-29Implement Error trait for TryFromSliceErrorNikolai Vazquez-0/+15
2017-09-21Implement TryFrom for array reference typesNikolai Vazquez-0/+34
2017-08-31Update bootstrap compilerAlex Crichton-8/+0
2017-08-22Auto merge of #43690 - scalexm:issue-28229, r=nikomatsakisbors-0/+1
2017-08-20Fix typo in docShanavas M-1/+1
2017-08-14Make `Clone` a lang item and generate builtin impls.scalexm-0/+1
2016-10-01std: Correct stability attributes for some implementationsOliver Middleton-0/+2
2016-08-24Use `#[prelude_import]` in `libcore`.Jeffrey Seyfried-8/+3
2016-03-01Fix broken links for core primitivesMichael Huynh-1/+1
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