Struct std::ops::RangeTo
[−]
[src]
pub struct RangeTo<Idx> { pub end: Idx, }1.0.0
A range which is only bounded above: { x | x < end }.
Use ..end
(two dots) for its shorthand.
See the contains()
method for its characterization.
It cannot serve as an iterator because it doesn't have a starting point. ``` fn main() { assert_eq!((..5), std::ops::RangeTo{ end: 5 });
fn main() { let arr = [0, 1, 2, 3]; assert_eq!(arr[ .. ], [0,1,2,3]); assert_eq!(arr[ ..3], [0,1,2 ]); // RangeTo assert_eq!(arr[1.. ], [ 1,2,3]); assert_eq!(arr[1..3], [ 1,2 ]); }let arr = [0, 1, 2, 3]; assert_eq!(arr[ .. ], [0,1,2,3]); assert_eq!(arr[ ..3], [0,1,2 ]); // RangeTo assert_eq!(arr[1.. ], [ 1,2,3]); assert_eq!(arr[1..3], [ 1,2 ]);
} ```
Fields
end | The upper bound of the range (exclusive). |
Methods
impl<Idx> RangeTo<Idx> where Idx: PartialOrd<Idx>
fn contains(&self, item: Idx) -> bool
Examples
#![feature(range_contains)] fn main() { assert!( (..5).contains(-1_000_000_000)); assert!( (..5).contains(4)); assert!( ! (..5).contains(5)); }#![feature(range_contains)] fn main() { assert!( (..5).contains(-1_000_000_000)); assert!( (..5).contains(4)); assert!( ! (..5).contains(5)); }