Type for an inclusive range expression ..end
.
Examples
let range = ..10;
assert!;
assert!;
assert!;
assert!;
assert!;
Ranges can contain any type:
let range = ..'f';
assert_eq!;
range.end = 'g';
assert_eq!;
Examples
use RangeTo;
let end = to_value?;
let _ = new;
Methods
Test if the range contains the given value.
The check is performed using the [PARTIAL_CMP
] protocol.
Examples
let range = ..10;
assert!;
assert!;
assert!;
assert!;
assert!;
Trait Implementations
Compare two values for equality.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Compare two values for inequality.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Compare two values.
Examples
use Ordering;
assert_eq!;
assert_eq!;
assert_eq!;
Tests less than (for self
and other
) and is used by the <
operator.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Tests less than or equal to (for self
and other
) and is used by the <=
operator.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Tests greater than (for self
and other
) and is used by the >
operator.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Tests greater than or equal to (for self
and other
) and is used by the >=
operator.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Compare two values.
Examples
use Ordering;
assert_eq!;
assert_eq!;
assert_eq!;
Return the minimum of two values.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Return the maximum of two values.
Examples
assert_eq!;
assert_eq!;
assert_eq!;
Protocols
if value == b
Test the range for partial equality.
Examples
let range = ..'e';
assert!;
assert!;
let range = ..2.0;
assert!;
assert!;
assert!;
if value == b
Test the range for total equality.
Examples
use eq;
let range = ..'e';
assert!;
assert!;
if value < b
Test the range for partial ordering.
Examples
assert!;
assert!;
assert!;
assert!;
if value < b
Test the range for total ordering.
Examples
use cmp;
use Ordering;
assert_eq!;
assert_eq!;