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

pub trait Collection: IObject + Iterable {
    fn size(&self) -> usize;
fn isEmpty(&self) -> bool;
fn contains(&self) -> ObjResult<bool>;
fn toArray(&self) -> ObjResult<Vec<Object>>;
fn containsAll(&self, c: &Object) -> ObjResult<bool>; }

Required methods

fn size(&self) -> usize[src]

fn isEmpty(&self) -> bool[src]

fn contains(&self) -> ObjResult<bool>[src]

fn toArray(&self) -> ObjResult<Vec<Object>>[src]

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

Collection -> Collection

Loading content...

Implementors

impl Collection for SPersistentHashSet[src]

impl Collection for SPersistentVector[src]

impl Collection for SRSeq[src]

impl Collection for SSubVector[src]

Loading content...