vecdb 0.10.2

High-performance mutable persistent vectors built on rawdb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod divide;
mod minus;
mod plus;
mod times;

pub use divide::Divide;
pub use minus::Minus;
pub use plus::Plus;
pub use times::Times;

/// Trait for binary transforms applied lazily during iteration.
/// Zero-sized types implementing this get monomorphized (zero runtime cost).
pub trait BinaryTransform<In1, In2, Out = In1> {
    fn apply(lhs: In1, rhs: In2) -> Out;
}