std::ops::RangeToInclusive

Struct std::ops::RangeToInclusive

pub struct RangeToInclusive<Idx> {
    pub end: Idx,
}
???? This is a nightly-only experimental API. (inclusive_range #28237)recently added, follows RFC

An inclusive range which is only bounded above: { x | x <= end }. Use ...end (three 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.

Examples

The ...{integer} syntax is a RangeToInclusive:

#![feature(inclusive_range,inclusive_range_syntax)]
assert_eq!((...5), std::ops::RangeToInclusive{ end: 5 });

It does not have an IntoIterator implementation, so you can't use it in a for loop directly. This won't compile:

for i in ...5 {
    // ...
}

When used as a slicing index, RangeToInclusive produces a slice of all array elements up to and including the index indicated by end.

#![feature(inclusive_range_syntax)]
let arr = [0, 1, 2, 3];
assert_eq!(arr[ ...2], [0,1,2  ]);  // RangeToInclusive
assert_eq!(arr[1...2], [  1,2  ]);

Fields

???? This is a nightly-only experimental API. (inclusive_range #28237)recently added, follows RFC

The upper bound of the range (inclusive)

Methods

impl<Idx> RangeToInclusive<Idx> where
    Idx: PartialOrd<Idx>, 
[src]

???? This is a nightly-only experimental API. (range_contains #32311)recently added as per RFC

Examples

#![feature(range_contains,inclusive_range_syntax)]
fn main() {
    assert!(   (...5).contains(-1_000_000_000));
    assert!(   (...5).contains(5));
    assert!( ! (...5).contains(6));
}

Trait Implementations

impl<T> RangeArgument<T> for RangeToInclusive<T> [src]

???? This is a nightly-only experimental API. (collections_range #30877)waiting for dust to settle on inclusive ranges

Start index bound. Read more

???? This is a nightly-only experimental API. (collections_range #30877)waiting for dust to settle on inclusive ranges

End index bound. Read more

impl<Idx> Eq for RangeToInclusive<Idx> where
    Idx: Eq
[src]

impl<Idx> Copy for RangeToInclusive<Idx> where
    Idx: Copy
[src]

impl<Idx> Debug for RangeToInclusive<Idx> where
    Idx: Debug
[src]

Formats the value using the given formatter.

impl<Idx> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx> where
    Idx: PartialEq<Idx>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Idx> Clone for RangeToInclusive<Idx> where
    Idx: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Idx> Hash for RangeToInclusive<Idx> where
    Idx: Hash
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<T> SliceIndex<[T]> for RangeToInclusive<usize> [src]

???? This is a nightly-only experimental API. (slice_get_slice #35729)

The output type returned by methods.

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, if in bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, if in bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, without performing any bounds checking. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, without performing any bounds checking. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, panicking if out of bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, panicking if out of bounds. Read more

impl SliceIndex<str> for RangeToInclusive<usize> [src]

???? This is a nightly-only experimental API. (slice_get_slice #35729)

The output type returned by methods.

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, if in bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, if in bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, without performing any bounds checking. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, without performing any bounds checking. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, panicking if out of bounds. Read more

???? This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, panicking if out of bounds. Read more

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/struct.RangeToInclusive.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部