Struct BitVec

Source
pub struct BitVec<'st, const M: usize>(/* private fields */);
Expand description

A bit-vec is a fixed size sequence of boolean values. You can read more about it here, among other places.

Implementations§

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn new( st: &'st Storage, value: impl IntoWithStorage<'st, BitVec<'st, M>>, ) -> BitVec<'st, M>

Construct a new bit-vec.

Source

pub fn bvnot(self) -> Self

Calls (bvnot self) i.e. bitwise not

Source

pub fn bvneg(self) -> Self

Calls (bvneg self) i.e. two’s complement negation

Source

pub fn bvnand(self, other: impl Into<Self>) -> Self

Calls (bvnand self other) i.e. bitwise nand

Source

pub fn bvnor(self, other: impl Into<Self>) -> Self

Calls (bvnor self other) i.e. bitwise nor

Source

pub fn bvxnor(self, other: impl Into<Self>) -> Self

Calls (bvxnor self other) i.e. bitwise xnor

Source

pub fn bvult(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvult self other)

Source

pub fn bvule(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvule self other) i.e. unsigned less or equal

Source

pub fn bvugt(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvugt self other) i.e. unsigned greater than

Source

pub fn bvuge(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvuge self other) i.e. unsigned greater or equal

Source

pub fn bvslt(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvslt self other) i.e. signed less than

Source

pub fn bvsle(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvsle self other) i.e. signed less or equal

Source

pub fn bvsgt(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvsgt self other) i.e. signed greater than

Source

pub fn bvsge(self, other: impl Into<Self>) -> Bool<'st>

Calls (bvsge self other) i.e. signed greater or equal

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvand(self, other: impl Into<Self>) -> Self

Calls (bvand self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvor(self, other: impl Into<Self>) -> Self

Calls (bvor self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvxor(self, other: impl Into<Self>) -> Self

Calls (bvxor self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvadd(self, other: impl Into<Self>) -> Self

Calls (bvadd self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvmul(self, other: impl Into<Self>) -> Self

Calls (bvmul self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvudiv(self, other: impl Into<Self>) -> Self

Calls (bvudiv self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvurem(self, other: impl Into<Self>) -> Self

Calls (bvurem self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvlshr(self, other: impl Into<Self>) -> Self

Calls (bvlshr self other)

Source§

impl<'st, const M: usize> BitVec<'st, M>

Source

pub fn bvshl(self, other: impl Into<Self>) -> Self

Calls (bvshl self other)

Trait Implementations§

Source§

impl<'st, const M: usize, R> Add<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: R) -> Self::Output

Performs the + operation. Read more
Source§

impl<'st, const M: usize, R> AddAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn add_assign(&mut self, rhs: R)

Performs the += operation. Read more
Source§

impl<'st, const M: usize, R> BitAnd<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: R) -> Self::Output

Performs the & operation. Read more
Source§

impl<'st, const M: usize, R> BitAndAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn bitand_assign(&mut self, rhs: R)

Performs the &= operation. Read more
Source§

impl<'st, const M: usize, R> BitOr<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: R) -> Self::Output

Performs the | operation. Read more
Source§

impl<'st, const M: usize, R> BitOrAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn bitor_assign(&mut self, rhs: R)

Performs the |= operation. Read more
Source§

impl<'st, const M: usize, R> BitXor<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: R) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'st, const M: usize, R> BitXorAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn bitxor_assign(&mut self, rhs: R)

Performs the ^= operation. Read more
Source§

impl<'st, const M: usize> Clone for BitVec<'st, M>

Source§

fn clone(&self) -> BitVec<'st, M>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'st, const M: usize> Debug for BitVec<'st, M>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const M: usize> Display for BitVec<'_, M>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'st, const M: usize, R> Div<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: R) -> Self::Output

Performs the / operation. Read more
Source§

impl<'st, const M: usize, R> DivAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn div_assign(&mut self, rhs: R)

Performs the /= operation. Read more
Source§

impl<'st, const M: usize> From<BitVec<'st, M>> for Dynamic<'st>

Source§

fn from(i: BitVec<'st, M>) -> Self

Converts to this type from the input type.
Source§

impl<'st, const M: usize> From<BitVec<'st, M>> for STerm<'st>

Source§

fn from(i: BitVec<'st, M>) -> Self

Converts to this type from the input type.
Source§

impl<'st, const M: usize> From<Const<'st, BitVec<'st, M>>> for BitVec<'st, M>

Source§

fn from(c: Const<'st, BitVec<'st, M>>) -> Self

Converts to this type from the input type.
Source§

impl<'st, const M: usize> From<STerm<'st>> for BitVec<'st, M>

Source§

fn from(t: STerm<'st>) -> Self

Converts to this type from the input type.
Source§

impl<'st, const M: usize> IntoWithStorage<'st, BitVec<'st, M>> for [bool; M]

Source§

fn into_with_storage(self, st: &'st Storage) -> BitVec<'st, M>

Construct a STerm with the presence of Storage
Source§

impl<'st, const M: usize> IntoWithStorage<'st, BitVec<'st, M>> for i64

Source§

fn into_with_storage(self, st: &'st Storage) -> BitVec<'st, M>

Construct a STerm with the presence of Storage
Source§

impl<'st, const M: usize, R> Mul<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: R) -> Self::Output

Performs the * operation. Read more
Source§

impl<'st, const M: usize, R> MulAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn mul_assign(&mut self, rhs: R)

Performs the *= operation. Read more
Source§

impl<const M: usize> Neg for BitVec<'_, M>

Source§

type Output = BitVec<'_, M>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
Source§

impl<const M: usize> Not for BitVec<'_, M>

Source§

type Output = BitVec<'_, M>

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl<'st, const M: usize, R> Rem<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: R) -> Self::Output

Performs the % operation. Read more
Source§

impl<'st, const M: usize, R> RemAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn rem_assign(&mut self, rhs: R)

Performs the %= operation. Read more
Source§

impl<'st, const M: usize, R> Shl<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: R) -> Self::Output

Performs the << operation. Read more
Source§

impl<'st, const M: usize, R> ShlAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn shl_assign(&mut self, rhs: R)

Performs the <<= operation. Read more
Source§

impl<'st, const M: usize, R> Shr<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

type Output = BitVec<'st, M>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: R) -> Self::Output

Performs the >> operation. Read more
Source§

impl<'st, const M: usize, R> ShrAssign<R> for BitVec<'st, M>
where R: Into<BitVec<'st, M>>,

Source§

fn shr_assign(&mut self, rhs: R)

Performs the >>= operation. Read more
Source§

impl<'st, const M: usize> StaticSorted<'st> for BitVec<'st, M>

Source§

const AST_SORT: Sort<'static>

The sort of this sort.
Source§

type Inner = BitVec<'st, M>

The inner type of the term. This is used for Const<'st, T> where the inner type is T.
Source§

fn static_st(&self) -> &'st Storage

The storage associated with the term.
Source§

fn sort() -> Sort<'st>

The sort of this sort.
Source§

fn new_const(st: &'st Storage, name: &str) -> Const<'st, Self>

Construct a new constante of this sort.
Source§

impl<'st, const M: usize> TryFrom<BitVec<'st, M>> for [bool; M]

Source§

type Error = ParseIntError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BitVec<'st, M>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'st, const M: usize> TryFrom<BitVec<'st, M>> for i64

Source§

type Error = ParseIntError

The type returned in the event of a conversion error.
Source§

fn try_from(value: BitVec<'st, M>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'st, const M: usize> Copy for BitVec<'st, M>

Auto Trait Implementations§

§

impl<'st, const M: usize> Freeze for BitVec<'st, M>

§

impl<'st, const M: usize> !RefUnwindSafe for BitVec<'st, M>

§

impl<'st, const M: usize> !Send for BitVec<'st, M>

§

impl<'st, const M: usize> !Sync for BitVec<'st, M>

§

impl<'st, const M: usize> Unpin for BitVec<'st, M>

§

impl<'st, const M: usize> !UnwindSafe for BitVec<'st, M>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'st, T> IntoWithStorage<'st, T> for T

Source§

fn into_with_storage(self, _st: &'st Storage) -> T

Construct a STerm with the presence of Storage
Source§

impl<'st, T> Sorted<'st> for T
where T: StaticSorted<'st>,

Source§

type Inner = <T as StaticSorted<'st>>::Inner

The inner type of the term. This is used for Const<'st, T> where the inner type is T.
Source§

fn sort(&self) -> Sort<'st>

The sort of the term.
Source§

fn is_sort(sort: Sort<'st>) -> bool

Check if a sort is of this type.
Source§

fn st(&self) -> &'st Storage

The storage associated with any term of this sort.
Source§

fn sterm(self) -> STerm<'st>

Constructy the smtlib AST representation of the term with associated storage.
Source§

fn term(self) -> &'st Term<'st>

Construct the smtlib AST representation of term.
Source§

fn from_dynamic(d: Dynamic<'st>) -> Self
where Self: From<(STerm<'st>, Sort<'st>)>,

Casts a dynamically typed term into a concrete type
Source§

fn try_from_dynamic(d: Dynamic<'st>) -> Option<Self>
where Self: From<(STerm<'st>, Sort<'st>)>,

Casts a dynamically typed term into a concrete type iff the dynamic sort matches
Source§

fn into_dynamic(self) -> Dynamic<'st>

Casts the term into a dynamic term which looses static types and stores the sort dynamically.
Source§

fn _eq(self, other: impl IntoWithStorage<'st, Self::Inner>) -> Bool<'st>

Construct the term representing (= self other)
Source§

fn _neq(self, other: impl IntoWithStorage<'st, Self::Inner>) -> Bool<'st>

Construct the term representing (distinct self other)
Source§

fn labeled(self) -> (Label<Self>, Self::Inner)
where Self::Inner: From<STerm<'st>>,

Wraps the term in a a label, which can be used to extract information from models at a later point.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.