Trait clojurust::clojure::rust::objects::Associative::Associative[][src]

pub trait Associative {
    fn assoc(&self, key: &Object, value: &Object) -> ObjResult<Object>;
fn containsKey(&self, key: &Object) -> ObjResult<bool>;
fn entryAt(&self, key: &Object) -> ObjResult<Object>; }

Required methods

fn assoc(&self, key: &Object, value: &Object) -> ObjResult<Object>[src]

Associative -> Object -> Object -> Associative

fn containsKey(&self, key: &Object) -> ObjResult<bool>[src]

Associative -> Object -> bool

fn entryAt(&self, key: &Object) -> ObjResult<Object>[src]

Associative -> Object -> IMapEntry

Loading content...

Implementors

impl Associative for SPersistentHashMap[src]

impl Associative for SPersistentVector[src]

impl Associative for SSubVector[src]

Loading content...