[][src]Struct reikna::prime::Bitset

pub struct Bitset { /* fields omitted */ }

Simple bit set implementation for prime sieves

Please note that this struct is not intended for general use, and is only publicly exposed so the segmented_sieve! macro can work.

Implementations

impl Bitset[src]

pub fn new(size: usize) -> Bitset[src]

pub fn one(&mut self)[src]

pub fn read(&self, pos: usize) -> bool[src]

pub fn set(&mut self, pos: usize, value: bool)[src]

Auto Trait Implementations

impl RefUnwindSafe for Bitset

impl Send for Bitset

impl Sync for Bitset

impl Unpin for Bitset

impl UnwindSafe for Bitset

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.