rx.range

This module defines some operations like range.

Members

Functions

drop
auto drop(TObservable observable, size_t n)

Creates the observable that results from discarding the first n elements from the given source.

take
auto take(TObservable observable, size_t n)

Creates a sub-observable consisting of only up to the first n elements of the given source.

takeLast
auto takeLast(TObservable observable)

Creates a observable that take only a last element of the given source.

Meta