Trait itertools::groupbylazy::KeyFunction
source · trait KeyFunction<A> {
type Key;
// Required method
fn call_mut(&mut self, arg: A) -> Self::Key;
}
Expand description
A trait to unify FnMut
for ChunkBy
with the chunk key in IntoChunks