[][src]Struct raptor::analysis::ksets::KSet

pub struct KSet { /* fields omitted */ }

Methods

impl KSet[src]

pub fn new(k: usize, value: KSetValue) -> KSet[src]

pub fn new_top(bits: usize) -> KSet[src]

pub fn from_constant(constant: Constant) -> KSet[src]

pub fn from_strided_interval(strided_interval: &StridedInterval) -> KSet[src]

pub fn k(&self) -> usize[src]

pub fn value(&self) -> &KSetValue[src]

pub fn bits(&self) -> usize[src]

pub fn join(&self, other: &KSet) -> KSet[src]

pub fn add(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn sub(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn mul(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn divu(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn modu(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn divs(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn mods(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn and(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn or(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn xor(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn shl(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn shr(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn cmpeq(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn cmpneq(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn cmpltu(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn cmplts(&self, rhs: &KSet) -> Result<KSet>[src]

pub fn zext(&self, bits: usize) -> Result<KSet>[src]

pub fn sext(&self, bits: usize) -> Result<KSet>[src]

pub fn trun(&self, bits: usize) -> Result<KSet>[src]

pub fn ite(cond: &KSet, then: &KSet, else_: &KSet) -> Result<KSet>[src]

Trait Implementations

impl Clone for KSet[src]

impl Debug for KSet[src]

impl Display for KSet[src]

impl Eq for KSet[src]

impl Hash for KSet[src]

impl PartialEq<KSet> for KSet[src]

impl PartialOrd<KSet> for KSet[src]

impl StructuralEq for KSet[src]

impl StructuralPartialEq for KSet[src]

impl Value for KSet[src]

Auto Trait Implementations

impl RefUnwindSafe for KSet

impl Send for KSet

impl Sync for KSet

impl Unpin for KSet

impl UnwindSafe for KSet

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.