Docs.rs
delsum-lib-1.0.0
delsum-lib 1.0.0
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
8051Enthusiast
Dependencies
bitvec ^1.0
normal
gf2poly ^0.1.0
normal
lazy_static ^1.4
normal
num-bigint ^0.4
normal
num-prime ^0.4.4
normal
num-traits ^0.2
normal
rand ^0.9
normal
rayon ^1.8
normal
optional
quickcheck ^1.0
dev
quickcheck_macros ^1.0
dev
Versions
55.84%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
UnsignedInclRange
delsum_
lib
1.0.0
Unsigned
Incl
Range
Aliased Type
Methods
contains
is_empty
len
new
set_end
set_start
to_signed
In delsum_
lib::
utils
delsum_lib
::
utils
Type Alias
Unsigned
Incl
Range
Copy item path
Source
pub type UnsignedInclRange =
InclRange
<
usize
>;
Aliased Type
§
pub struct UnsignedInclRange {
/* private fields */
}
Implementations
§
Source
§
impl
UnsignedInclRange
Source
pub fn
new
(start:
usize
, end:
usize
) ->
Option
<Self>
Source
pub fn
set_start
(self, start:
usize
) ->
Option
<Self>
Source
pub fn
set_end
(self, end:
usize
) ->
Option
<Self>
Source
pub fn
contains
(&self, idx:
usize
) ->
bool
Source
pub fn
len
(&self) ->
usize
Source
pub fn
is_empty
(&self) ->
bool
Source
pub fn
to_signed
( self, start_rel:
Relativity
, end_rel:
Relativity
, len:
usize
, ) ->
Option
<
SignedInclRange
>