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

pub trait Comparable: IObject {
    fn compareTo(&self, o: &Object) -> ObjResult<i8>;
}

Required methods

fn compareTo(&self, o: &Object) -> ObjResult<i8>[src]

Compare with object

result < 0 iff self < o result > 0 iff self > o result 0 0 iff self = o throw NullPointerException iff o = nil throw ClassCastException iff o and self are not comparable

Loading content...

Implementors

impl Comparable for SPersistentVector[src]

impl Comparable for SSubVector[src]

Loading content...