1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Protocol IHashEq

// use clojure::lang::*;
use clojure::rust::*;

use crate::*;

pub trait IHashEq: IObject {
    fn hasheq(&self) -> ObjResult<usize>;
}