pub trait BSTCaseInsensitiveStringMapTrait<T> {
// Required methods
fn hash_function(&self, key: &str) -> u32;
fn key_eq(&self, lhs: &str, rhs: &str) -> bool;
}
Expand description
Trait to represent map operations.
pub trait BSTCaseInsensitiveStringMapTrait<T> {
// Required methods
fn hash_function(&self, key: &str) -> u32;
fn key_eq(&self, lhs: &str, rhs: &str) -> bool;
}
Trait to represent map operations.