| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-02-04 | Implement `..` syntax for RangeFull as expression | Ulrik Sverdrup | -1/+1 | |
| Allows the expression `..` (without either endpoint) in general, can be used in slicing syntax `&expr[..]` where we previously wrote `&expr[]`. The old syntax &expr[] is not yet removed or warned for. | ||||
| 2015-01-07 | remove some `slicing_syntax` feature gates | Jorge Aparicio | -2/+0 | |
| 2015-01-07 | fallout | Nick Cameron | -4/+4 | |
| 2015-01-07 | Tests | Nick Cameron | -4/+4 | |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -4/+4 | |
| 2014-12-30 | Fallout from mut slices | Nick Cameron | -4/+0 | |
| 2014-10-07 | Put slicing syntax behind a feature gate. | Nick Cameron | -0/+2 | |
| [breaking-change] If you are using slicing syntax you will need to add #![feature(slicing_syntax)] to your crate. | ||||
| 2014-10-02 | Revert "Put slicing syntax behind a feature gate." | Aaron Turon | -2/+0 | |
| This reverts commit 95cfc35607ccf5f02f02de56a35a9ef50fa23a82. | ||||
| 2014-10-02 | Put slicing syntax behind a feature gate. | Nick Cameron | -0/+2 | |
| [breaking-change] If you are using slicing syntax you will need to add #![feature(slicing_syntax)] to your crate. | ||||
| 2014-09-19 | reviewer changes | Nick Cameron | -1/+1 | |
| 2014-09-19 | Implement slicing syntax. | Nick Cameron | -0/+25 | |
| `expr[]`, `expr[expr..]`, `expr[..expr]`,`expr[expr..expr]` Uses the Slice and SliceMut traits. Allows ... as well as .. in range patterns. | ||||
