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

/// Comparator
use crate::*;
// use clojure::lang::*;

pub trait Comparator: IObject {
    /// AFunction -> Object -> Object -> int
    fn compare(
        o1: Object,
        o2: Object,
    ) -> i8;
}