FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
arrayvec/src/range.rs at master · Simteract/arrayvec · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Simteract
/
arrayvec
Public
forked from
bluss/arrayvec
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
arrayvec
/
src
/
range.rs
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (34 loc) · 968 Bytes
Breadcrumbs
arrayvec
/
src
/
range.rs
Copy path
File metadata and controls
42 lines (34 loc) · 968 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
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
)
}
}
Back
|
FazBrowse Home
|
New Git URL