stdlibx.itertools.fn module¶
- stdlibx.itertools.fn.filter_(func, /, *, lazy=True)[source]¶
- Parameters:
func (Callable[[T], bool])
lazy (bool)
- Return type:
Operation[Iterable[T], Iterable[T]]
- stdlibx.itertools.fn.filter_none(*, lazy=True)[source]¶
- Parameters:
lazy (bool)
- Return type:
Operation[Iterable[Union[T, None]], Iterable[T]]