Trait evmil::util::JoinInto

source ·
pub trait JoinInto<Rhs: ?Sized = Self> {
    // Required method
    fn join_into(&mut self, other: &Rhs) -> bool;
}
Expand description

An abstract value can be used to represent one or more concrete values.

Required Methods§

source

fn join_into(&mut self, other: &Rhs) -> bool

Merge another abstract value into this value.

Implementations on Foreign Types§

source§

impl<T: Clone + EvmState + PartialEq> JoinInto<T> for Vec<T>

source§

fn join_into(&mut self, other: &T) -> bool

Implementors§