Home
last modified time | relevance | path

Searched defs:lift_operator (Results 1 – 1 of 1) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-lift.hpp61 struct lift_operator : public operator_base<typename lift_traits<ResultType, SourceOperator, Operat… struct
63 typedef lift_traits<ResultType, SourceOperator, Operator> traits;
64 typedef typename traits::source_operator_type source_operator_type;
65 typedef typename traits::operator_type operator_type;
66 source_operator_type source;
67 operator_type chain;
69 lift_operator(source_operator_type s, operator_type op) in lift_operator() argument
75 void on_subscribe(Subscriber o) const { in on_subscribe()