1.28.0[−][src]Trait core::ops::RangeBounds
RangeBounds
is implemented by Rust's built-in range types, produced
by range syntax like ..
, a..
, ..b
, ..=c
, d..e
, or f..=g
.
Required methods
fn start_bound(&self) -> Bound<&T>
Start index bound.
Returns the start value as a Bound
.
Examples
use std::ops::Bound::*; use std::ops::RangeBounds; assert_eq!((..10).start_bound(), Unbounded); assert_eq!((3..10).start_bound(), Included(&3));Run
fn end_bound(&self) -> Bound<&T>
Provided methods
fn contains<U: ?Sized>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T>,
1.35.0
T: PartialOrd<U>,
U: PartialOrd<T>,