RxCpp
The Reactive Extensions for Native (RxCpp) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in both C and C++.
|
For each item from this observable use Selector to produce an item to emit from the new observable that is returned. More...
#include "../rx-includes.hpp"
Go to the source code of this file.
Classes | |
struct | rxcpp::member_overload< map_tag > |
Namespaces | |
rxcpp | |
rxcpp::operators | |
Macros | |
#define | RXCPP_OPERATORS_RX_MAP_HPP |
Functions | |
template<class... AN> | |
auto | rxcpp::operators::map (AN &&...an) -> operator_factory< map_tag, AN... > |
For each item from this observable use Selector to produce an item to emit from the new observable that is returned. More... | |
template<class... AN> | |
auto | rxcpp::operators::transform (AN &&...an) -> operator_factory< map_tag, AN... > |
For each item from this observable use Selector to produce an item to emit from the new observable that is returned. More... | |
For each item from this observable use Selector to produce an item to emit from the new observable that is returned.
Selector | the type of the transforming function |
s | the selector function |
#define RXCPP_OPERATORS_RX_MAP_HPP |