ordist 0.2.0

Order distance package
Documentation
1
2
3
4
5
use std::fmt;
use std::hash::Hash;

pub trait OrDistElement: Hash + Eq + Clone + fmt::Debug {}
impl<T: Hash + Eq + Clone + fmt::Debug> OrDistElement for T {}