1
 2
 3
 4
 5
 6
 7
 8
 9
10
use clojure::rust::*;

/// Protocol `Counted`
use crate::*;
// use clojure::lang::*;

pub trait Counted: IObject {
    /// give the nr of elements
    fn count(&self) -> ObjResult<usize>;
}