Struct monster::solver::BitVector[][src]

pub struct BitVector(pub u64);

Implementations

impl BitVector[src]

pub fn ones() -> BitVector[src]

pub fn ctz(&self) -> u32[src]

pub fn odd(&self) -> bool[src]

pub fn lsb(&self) -> u64[src]

pub fn modinverse(&self) -> Option<BitVector>[src]

pub fn addo(&self, t: BitVector) -> bool[src]

pub fn mulo(&self, t: BitVector) -> bool[src]

Trait Implementations

impl Add<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the + operator.

impl BitAnd<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the & operator.

impl BitOr<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the | operator.

impl BitXor<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the ^ operator.

impl Clone for BitVector[src]

impl Copy for BitVector[src]

impl Debug for BitVector[src]

impl Div<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the / operator.

impl Eq for BitVector[src]

impl Hash for BitVector[src]

impl Mul<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the * operator.

impl Neg for BitVector[src]

type Output = BitVector

The resulting type after applying the - operator.

impl Not for BitVector[src]

type Output = BitVector

The resulting type after applying the ! operator.

impl PartialEq<BitVector> for BitVector[src]

impl PartialOrd<BitVector> for BitVector[src]

impl Rem<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the % operator.

impl Shl<u32> for BitVector[src]

type Output = BitVector

The resulting type after applying the << operator.

impl Shr<u32> for BitVector[src]

type Output = BitVector

The resulting type after applying the >> operator.

impl StructuralEq for BitVector[src]

impl StructuralPartialEq for BitVector[src]

impl Sub<BitVector> for BitVector[src]

type Output = BitVector

The resulting type after applying the - operator.

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,