Trait list_fn::FlatMapFn

source ·
pub trait FlatMapFn {
    type Input;
    type OutputList: ListFn;

    fn map(&self, input: Self::Input) -> Self::OutputList;
}

Required Associated Types§

Required Methods§

Map the given input item into a list.

Implementors§

impl<T: UInt> FlatMapFn for Lsb0FlatMap<T>