ps_hash/implementations/
ord.rs

1use crate::Hash;
2
3impl Ord for Hash {
4    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
5        self.inner.cmp(&other.inner)
6    }
7}