1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Protocol IKVReduce // use clojure::lang::*; use clojure::rust::*; use crate::*; pub trait IKVReduce: IObject { fn kvreduce( &self, f: Object, init: Object, ) -> ObjResult<Object>; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Protocol IKVReduce // use clojure::lang::*; use clojure::rust::*; use crate::*; pub trait IKVReduce: IObject { fn kvreduce( &self, f: Object, init: Object, ) -> ObjResult<Object>; }