pub enum PatriciaTreeMapAbstractEnvironment<V: Into<BitVec> + Clone, D: Sized + Eq + AbstractDomain> {
Value(PatriciaTreeMap<V, D>),
Bottom,
}Variants§
Value(PatriciaTreeMap<V, D>)
Bottom
Trait Implementations§
Source§impl<V, D> AbstractDomain for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> AbstractDomain for PatriciaTreeMapAbstractEnvironment<V, D>
fn bottom() -> Self
fn top() -> Self
fn is_bottom(&self) -> bool
fn is_top(&self) -> bool
fn leq(&self, rhs: &Self) -> bool
fn join_with(&mut self, rhs: Self)
fn meet_with(&mut self, rhs: Self)
fn widen_with(&mut self, rhs: Self)
fn narrow_with(&mut self, rhs: Self)
fn join(self, rhs: Self) -> Self
fn meet(self, rhs: Self) -> Self
fn widen(self, rhs: Self) -> Self
fn narrow(self, rhs: Self) -> Self
Source§impl<V, D> AbstractEnvironment<V, D> for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> AbstractEnvironment<V, D> for PatriciaTreeMapAbstractEnvironment<V, D>
type ContainerType = PatriciaTreeMap<V, D>
fn bindings(&self) -> Option<&PatriciaTreeMap<V, D>>
fn into_bindings(self) -> Option<PatriciaTreeMap<V, D>>
fn len(&self) -> usize
fn is_empty(&self) -> bool
fn get(&self, variable: &V) -> Cow<'_, D>
fn set(&mut self, variable: V, domain: D)
fn update(&mut self, variable: &V, op: impl FnOnce(&mut D))
Source§impl<V, D> Clone for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> Clone for PatriciaTreeMapAbstractEnvironment<V, D>
Source§impl<V: Debug + Into<BitVec> + Clone, D: Debug + Sized + Eq + AbstractDomain> Debug for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V: Debug + Into<BitVec> + Clone, D: Debug + Sized + Eq + AbstractDomain> Debug for PatriciaTreeMapAbstractEnvironment<V, D>
Source§impl<V, D> PartialEq for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> PartialEq for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> Eq for PatriciaTreeMapAbstractEnvironment<V, D>
Auto Trait Implementations§
impl<V, D> Freeze for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> RefUnwindSafe for PatriciaTreeMapAbstractEnvironment<V, D>where
V: RefUnwindSafe,
D: RefUnwindSafe,
impl<V, D> !Send for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> !Sync for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> Unpin for PatriciaTreeMapAbstractEnvironment<V, D>where
V: Unpin,
impl<V, D> UnsafeUnpin for PatriciaTreeMapAbstractEnvironment<V, D>
impl<V, D> UnwindSafe for PatriciaTreeMapAbstractEnvironment<V, D>where
V: UnwindSafe,
D: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.