rx.algorithm.filter

This module defines algorithm 'filter'

Members

Structs

FilterObservable
struct FilterObservable(alias pred, TObservable)
FilterObserver
struct FilterObserver(alias pred, TObserver, E)
Undocumented in source.

Templates

filter
template filter(alias pred)

Implements the higher order filter function. The predicate is passed to std.functional.unaryFun, and can either accept a string, or any callable that can be executed via pred(element).

Meta