File: range.rs

package info (click to toggle)
rustc 1.41.1%2Bdfsg1-1~deb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 997,884 kB
  • sloc: xml: 133,832; ansic: 15,300; sh: 14,409; javascript: 6,505; python: 5,619; cpp: 3,984; makefile: 2,795; asm: 227; ruby: 68; awk: 10
file content (42 lines) | stat: -rw-r--r-- 968 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

use std::ops::{
    RangeFull,
    RangeFrom,
    RangeTo,
    Range,
};

/// `RangeArgument` is implemented by Rust's built-in range types, produced
/// by range syntax like `..`, `a..`, `..b` or `c..d`.
///
/// Note: This is arrayvec's provisional trait, waiting for stable Rust to
/// provide an equivalent.
pub trait RangeArgument {
    #[inline]
    /// Start index (inclusive)
    fn start(&self) -> Option<usize> { None }
    #[inline]
    /// End index (exclusive)
    fn end(&self) -> Option<usize> { None }
}


impl RangeArgument for RangeFull {}

impl RangeArgument for RangeFrom<usize> {
    #[inline]
    fn start(&self) -> Option<usize> { Some(self.start) }
}

impl RangeArgument for RangeTo<usize> {
    #[inline]
    fn end(&self) -> Option<usize> { Some(self.end) }
}

impl RangeArgument for Range<usize> {
    #[inline]
    fn start(&self) -> Option<usize> { Some(self.start) }
    #[inline]
    fn end(&self) -> Option<usize> { Some(self.end) }
}