1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
//! Vendors the [`equivalent`](https://crates.io/crates/equivalent) crate in order to avoid conflicts.
use std::borrow::Borrow;
use std::cmp::Ordering;
/// Key equivalence trait.
///
/// [`Hash`](std::hash::Hash) will have to be implemented to make sure that the same hash value
/// is generated for equivalent keys.
pub trait Equivalent<K: ?Sized> {
/// Compares `self` to `key` and returns `true` if they are equal.
fn equivalent(&self, key: &K) -> bool;
}
impl<Q: ?Sized, K: ?Sized> Equivalent<K> for Q
where
Q: Eq,
K: Borrow<Q>,
{
#[inline]
fn equivalent(&self, key: &K) -> bool {
PartialEq::eq(self, key.borrow())
}
}
/// Key ordering trait.
pub trait Comparable<K: ?Sized>: Equivalent<K> {
/// Compares `self` to `key` and returns their ordering.
fn compare(&self, key: &K) -> Ordering;
}
impl<Q: ?Sized, K: ?Sized> Comparable<K> for Q
where
Q: Ord,
K: Borrow<Q>,
{
#[inline]
fn compare(&self, key: &K) -> Ordering {
Ord::cmp(self, key.borrow())
}
}