index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
libcollections
/
slice.rs
Age
Commit message (
Expand
)
Author
Lines
2015-02-18
Round 4 test fixes and rebase conflicts
Alex Crichton
-2
/
+2
2015-02-18
rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket
Alex Crichton
-10
/
+10
2015-02-18
Stabilize std::borrow
Aaron Turon
-9
/
+10
2015-02-18
Replace all uses of `&foo[]` with `&foo[..]` en masse.
Niko Matsakis
-10
/
+10
2015-02-16
Auto merge of #22367 - Manishearth:rollup, r=steveklabnik
bors
-1
/
+0
2015-02-15
Fix rollup (remove slicing_syntax)
Manish Goregaokar
-1
/
+0
2015-02-13
more int and cloned cleanup in collections
Alexis
-2
/
+2
2015-02-11
implement missing iterator traits for slice::Windows
David Creswick
-0
/
+12
2015-02-06
remove int_uint feature from libcollections
Alexis
-2
/
+2
2015-02-06
Rollup merge of #21926 - mzabaluev:raw-lifetime, r=alexcrichton
Manish Goregaokar
-0
/
+1
2015-02-05
remove int_uint feature from libcollections
Alexis
-20
/
+20
2015-02-05
remove unecessary lifetimes from a bunch of collections code
Alexis
-26
/
+26
2015-02-05
misc collections code cleanup
Alexis
-300
/
+298
2015-02-05
cleanup: replace `as[_mut]_slice()` calls with deref coercions
Jorge Aparicio
-22
/
+22
2015-02-05
Replace usage of slice::from_raw_buf with slice::from_raw_parts
Mikhail Zabaluev
-0
/
+1
2015-02-02
`for x in xs.into_iter()` -> `for x in xs`
Jorge Aparicio
-1
/
+1
2015-02-02
`for x in xs.iter_mut()` -> `for x in &mut xs`
Jorge Aparicio
-9
/
+9
2015-02-02
`for x in xs.iter()` -> `for x in &xs`
Jorge Aparicio
-6
/
+6
2015-02-02
register snapshots
Jorge Aparicio
-6
/
+0
2015-01-30
rollup merge of #21631: tbu-/isize_police
Alex Crichton
-190
/
+190
2015-01-30
fix fallout
Jorge Aparicio
-1
/
+1
2015-01-30
Remove all `i` suffixes
Tobias Bucher
-190
/
+190
2015-01-30
Remove FullRange from the prelude etc.
Nick Cameron
-0
/
+6
2015-01-29
remove unused imports
Jorge Aparicio
-1
/
+1
2015-01-29
fix inference fallout
Jorge Aparicio
-9
/
+9
2015-01-29
convert remaining `range(a, b)` to `a..b`
Jorge Aparicio
-2
/
+2
2015-01-29
`for x in range(a, b)` -> `for x in a..b`
Jorge Aparicio
-9
/
+9
2015-01-29
`range(a, b).foo()` -> `(a..b).foo()`
Jorge Aparicio
-17
/
+17
2015-01-29
Auto merge of #21680 - japaric:slice, r=alexcrichton
bors
-31
/
+31
2015-01-28
Merge remote-tracking branch 'origin/master' into rollup
Manish Goregaokar
-70
/
+88
2015-01-27
cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` calls
Jorge Aparicio
-31
/
+31
2015-01-26
Correct a typo in a deprecation warning
Carol Nichols
-1
/
+1
2015-01-26
Add examples to documentation of SliceExt methods
Carol Nichols
-3
/
+104
2015-01-25
Merge remote-tracking branch 'rust-lang/master'
Brian Anderson
-47
/
+53
2015-01-23
grandfathered -> rust1
Brian Anderson
-43
/
+43
2015-01-23
Deprecated attributes don't take 'feature' names and are paired with stable/u...
Brian Anderson
-1
/
+2
2015-01-23
Set unstable feature names appropriately
Brian Anderson
-26
/
+26
2015-01-22
Rollup merge of #21484 - steveklabnik:connect_docs, r=alexcrichton
Steve Klabnik
-2
/
+21
2015-01-21
Remove 'since' from unstable attributes
Brian Anderson
-26
/
+26
2015-01-21
Add 'feature' and 'since' to stability attributes
Brian Anderson
-70
/
+81
2015-01-21
add doc examples for connect/concat
Steve Klabnik
-2
/
+21
2015-01-21
rollup merge of #21258: aturon/stab-3-index
Alex Crichton
-45
/
+19
2015-01-21
rollup merge of #21457: alexcrichton/issue-21436
Alex Crichton
-6
/
+6
2015-01-21
rollup merge of #21053: apasel422/exact
Alex Crichton
-0
/
+7
2015-01-21
Fallout from stabilization.
Aaron Turon
-1
/
+1
2015-01-21
Deprecate slicing methods in favor of notation
Aaron Turon
-44
/
+18
2015-01-20
std: Rename Show/String to Debug/Display
Alex Crichton
-6
/
+6
2015-01-20
implement `ExactSizeIterator` for `slice::{Chunks,ChunksMut}`
Andrew Paseltiner
-0
/
+7
2015-01-17
Remove unnecessary explicit conversions to *const T
we
-1
/
+1
2015-01-12
cleanup: `&foo[0..a]` -> `&foo[..a]`
Jorge Aparicio
-6
/
+6
[next]