Struct monster::solver::BitVector [−][src]
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.
fn add(self, other: BitVector) -> Self::Output[src]
impl BitAnd<BitVector> for BitVector[src]
type Output = BitVector
The resulting type after applying the & operator.
fn bitand(self, other: BitVector) -> Self::Output[src]
impl BitOr<BitVector> for BitVector[src]
type Output = BitVector
The resulting type after applying the | operator.
fn bitor(self, other: BitVector) -> Self::Output[src]
impl BitXor<BitVector> for BitVector[src]
type Output = BitVector
The resulting type after applying the ^ operator.
fn bitxor(self, other: BitVector) -> Self::Output[src]
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.
fn div(self, other: BitVector) -> Self::Output[src]
impl Eq for BitVector[src]
impl Hash for BitVector[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Mul<BitVector> for BitVector[src]
type Output = BitVector
The resulting type after applying the * operator.
fn mul(self, other: BitVector) -> Self::Output[src]
impl Neg for BitVector[src]
type Output = BitVector
The resulting type after applying the - operator.
fn neg(self) -> Self::Output[src]
impl Not for BitVector[src]
type Output = BitVector
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
impl PartialEq<BitVector> for BitVector[src]
impl PartialOrd<BitVector> for BitVector[src]
fn partial_cmp(&self, other: &BitVector) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Rem<BitVector> for BitVector[src]
type Output = BitVector
The resulting type after applying the % operator.
fn rem(self, other: BitVector) -> Self::Output[src]
impl Shl<u32> for BitVector[src]
type Output = BitVector
The resulting type after applying the << operator.
fn shl(self, other: u32) -> Self::Output[src]
impl Shr<u32> for BitVector[src]
type Output = BitVector
The resulting type after applying the >> operator.
fn shr(self, other: u32) -> Self::Output[src]
impl StructuralEq for BitVector[src]
impl StructuralPartialEq for BitVector[src]
impl Sub<BitVector> for BitVector[src]
Auto Trait Implementations
impl RefUnwindSafe for BitVector
impl Send for BitVector
impl Sync for BitVector
impl Unpin for BitVector
impl UnwindSafe for BitVector
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,