pub fn get_nonempty_suffix_items<'a, T: 'a>(
    items: impl Iterator<Item = &'a Option<T>> + 'a
) -> impl Iterator<Item = &'a T> + 'a
Expand description

Retrives all the items that are valid and not None.