about summary refs log tree commit diff
path: root/src/libcore/slice.rs
AgeCommit message (Expand)AuthorLines
2016-03-20Update snapshots to 2016-03-18 (235d774).Eduard Burtescu-4/+2
2016-03-20libcore: add Debug implementations to most missing typesSean McArthur-0/+79
2016-03-12std: Clean out deprecated APIsAlex Crichton-46/+0
2016-03-11core: Make a new tracking issue for prelude traitsAlex Crichton-2/+2
2016-03-12Rollup merge of #32183 - bluss:doc-index, r=alexcrichtonManish Goregaokar-0/+58
2016-03-10Clarify doc for slice slicing (Index impls)Ulrik Sverdrup-0/+58
2016-03-08doc: Fix a bunch of broken linksAlex Crichton-0/+1
2016-03-06Auto merge of #30884 - durka:inclusive-ranges, r=aturonbors-4/+53
2016-03-01Use raw pointer casts for slice, str's .as_ptr()Ulrik Sverdrup-4/+4
2016-02-27update snapshot commentsAlex Burka-2/+2
2016-02-27add indexing with RangeInclusive in libcore and libcollectionsAlex Burka-4/+51
2016-02-27note work still to be doneAlex Burka-0/+2
2016-02-25Add unstable copy_from_sliceNicholas Mazzuca-1/+13
2016-01-22Auto merge of #30917 - arthurprs:bs_bounds_check, r=alexcrichtonbors-11/+12
2016-01-22Avoid bounds check for slice binary searcharthurprs-11/+12
2016-01-18core: Restore indexed formulation of clone_from_sliceUlrik Sverdrup-2/+7
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-10/+7
2015-12-17Remove unused importsJeffrey Seyfried-1/+0
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-18/+0
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-101/+45
2015-11-23Auto merge of #29952 - petrochenkov:depr, r=brsonbors-2/+2
2015-11-23Improve slice indexing assertionManish Goregaokar-4/+22
2015-11-20Rename #[deprecated] to #[rustc_deprecated]Vadim Petrochenkov-2/+2
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+7
2015-11-06Remove stability annotations from trait impl itemsVadim Petrochenkov-1/+0
2015-10-25Auto merge of #29254 - alexcrichton:stabilize-1.5, r=brsonbors-0/+2
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-0/+2
2015-10-24Auto merge of #29252 - steveklabnik:safety, r=alexcrichtonbors-1/+1
2015-10-24Implements Default for mutable slices. Fixes: #29244James McGlashan-0/+5
2015-10-23Unsafety -> Safety in doc headingsSteve Klabnik-1/+1
2015-09-25Docs: &A and &mut A are references, not pointersSimon Sapin-2/+2
2015-09-16Explain explicit slicing in slice cmp and partial_cmp methodsAndrea Canciani-0/+6
2015-09-16Remove inline attributeAndrea Canciani-2/+0
2015-09-16Remove boundary checks in slice comparison operatorsAndrea Canciani-2/+6
2015-09-16Improve PartialOrd for slicesAndrea Canciani-18/+21
2015-09-11std: Stabilize/deprecate features for 1.4Alex Crichton-2/+2
2015-09-07Use unsafe more idiomaticallySteve Klabnik-1/+3
2015-09-03Elide lifetimes in libcoreManish Goregaokar-37/+37
2015-08-26Make iter::order functions into methods on IteratorSteven Fackler-6/+6
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-6/+8
2015-08-13Auto merge of #27684 - alexcrichton:remove-deprecated, r=aturonbors-140/+0
2015-08-13Auto merge of #27652 - alex-ozdemir:iter, r=blussbors-0/+95
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-140/+0
2015-08-12O(1) count,nth,last for slice::Windows,Chunks(Mut)Alex Ozdemir-0/+95
2015-08-09Make `slice::transmute*` privateTobias Bucher-4/+2
2015-08-09Replace many uses of `mem::transmute` with more specific functionsTobias Bucher-12/+42
2015-07-29Auto merge of #27358 - bluss:split-at-mut, r=aturonbors-4/+5
2015-07-28Use raw pointers to avoid aliasing violation in split_at_mutUlrik Sverdrup-4/+5
2015-07-20std: Create separate docs for the primitivesBrian Anderson-1/+0
2015-07-12Implement RFC 1058Simonas Kazlauskas-4/+32