pub trait Trisect: Clone {
type Key: FibonacciSearch;
// Required methods
fn trisect_key(self) -> Self::Key;
fn trisect_unkey(key: Self::Key) -> Self;
}Expand description
ternary search helper
Required Associated Types§
type Key: FibonacciSearch
Required Methods§
fn trisect_key(self) -> Self::Key
fn trisect_unkey(key: Self::Key) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.