about summary refs log tree commit diff
path: root/library/core/src/array
AgeCommit message (Expand)AuthorLines
2022-09-26remove cfg(bootstrap)Pietro Albini-2/+0
2022-09-23Added const Default impls for Arrays and Tuples.onestacked-1/+2
2022-09-21Auto merge of #100214 - scottmcm:strict-range, r=thomccbors-31/+23
2022-09-19Optimize `array::IntoIter`Scott McMurray-31/+23
2022-09-10array docs - advertise how to get array from sliceDoug Cook (WINDOWS)-0/+48
2022-08-22Move error trait into coreJane Losare-Lusby-0/+11
2022-08-20Improve primitive/std docs separation and headersCameron Steffen-1/+1
2022-08-12Clarify `array:from_fn` documentationzohnannor-0/+4
2022-08-11more typosRalf Jung-1/+1
2022-07-20fix typoRalf Jung-1/+1
2022-07-20make raw_eq precondition more restrictiveRalf Jung-3/+4
2022-06-21Add `Iterator::next_chunk`Ross MacArthur-31/+48
2022-05-24Stabilize `{slice,array}::from_ref`Maybe Waffle-1/+1
2022-05-20Stabilize core::array::from_fnCaio-7/+5
2022-05-14Auto merge of #95602 - scottmcm:faster-array-intoiter-fold, r=the8472bors-1/+15
2022-04-14Remove use of `#[rustc_deprecated]`Jacob Pratt-1/+1
2022-04-05trivial cfg(bootstrap) changesPietro Albini-1/+0
2022-04-02Fix `array::IntoIter::fold` to use the optimized `Range::fold`Scott McMurray-1/+15
2022-03-30remove now unnecessary lang itemslcnr-1/+1
2022-03-10Rollup merge of #94657 - fee1-dead:const_slice_index, r=oli-obkMatthias Krüger-4/+6
2022-03-06Constify slice index for stringsDeadbeef-4/+6
2022-02-23Fix a typo in documentation of `array::IntoIter::new_unchecked`Waffle Maybe-1/+1
2022-02-03Add missing const stability attributesJacob Pratt-0/+1
2021-12-23Switch all libraries to the 2021 editionDeadbeef-2/+0
2021-12-14Do array-slice equality via arrays, rather than always via slicesScott McMurray-12/+29
2021-12-14Auto merge of #91766 - scottmcm:more-array-raw-eq, r=yaahcbors-5/+49
2021-12-13Rollup merge of #91086 - rhysd:issue-91085, r=m-ou-seMatthias Krüger-0/+12
2021-12-11Rollup merge of #90270 - woppopo:const_borrow_trait, r=dtolnayMatthias Krüger-2/+4
2021-12-10Allow `memcmp` for more array comparisonsScott McMurray-5/+49
2021-12-10Add rsplit_array variants to slices and arraysJethro Beekman-0/+78
2021-12-08Auto merge of #91512 - scottmcm:array-intoiter-advance, r=Mark-Simulacrumbors-1/+43
2021-12-06s/from_raw_parts/new_unchecked/Scott McMurray-3/+3
2021-12-06Add tracking issue; make `empty` const too (unstably)Scott McMurray-4/+5
2021-12-06Move the doc test to edition2021Scott McMurray-6/+5
2021-12-06Add `array::IntoIter::{empty, from_raw_parts}`Scott McMurray-0/+129
2021-12-04Update array::IntoIter::new deprecation version.Mara Bos-1/+1
2021-12-04Swap body of array::IntoIter::new and IntoIterator::new.Mara Bos-28/+28
2021-12-04Deprecate array::IntoIter::new.Mara Bos-20/+1
2021-12-04Update stabilization version of try_from_mut_slice_to_arrayMara Bos-1/+1
2021-12-04Make `Borrow` and `BorrowMut` impls `const`woppopo-2/+4
2021-12-03Override `Iterator::advance(_back)_by` for `array::IntoIter`Scott McMurray-1/+43
2021-12-02Make array::{try_from_fn, try_map} and Iterator::try_find generic over TryScott McMurray-32/+84
2021-11-30Apply cfg-bootstrap switchMark Rousskov-5/+0
2021-11-21Reborrow mut slice instead of converting it with `as_ref`Linda_pp-1/+1
2021-11-20Update version in `stable` attributeLinda_pp-1/+1
2021-11-20Implement `TryFrom<&'_ mut [T]>` for `[T; N]`rhysd-0/+12
2021-11-10Moar #[inline]Scott McMurray-0/+2
2021-11-09Specialize array cloning for Copy typesScott McMurray-3/+22
2021-11-08Attempt to address perf regressions with #[inline]bstrie-2/+4
2021-11-08impl Copy/Clone for arrays in std, not in compilerbstrie-0/+18