pub trait Analyze { // Required methods fn index_of_coincidence(&self) -> f64; fn alphabet(&self) -> Alphabet; // Provided method fn ioc(&self) -> f64 { ... } }
Returns an Alphabet containing the unique characters of this string in-order.
Alphabet
Alias for index_of_coincidence().
index_of_coincidence()