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++.
Static Public Member Functions | List of all members
rxcpp::member_overload< distinct_until_changed_tag > Struct Template Reference

#include <rx-distinct_until_changed.hpp>

Static Public Member Functions

template<class Observable , class SourceValue = rxu::value_type_t<Observable>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, rxu::equal_to<>>>
static auto member (Observable &&o) -> decltype(o.template lift< SourceValue >(DistinctUntilChanged(rxu::equal_to<>())))
 
template<class Observable , class BinaryPredicate , class SourceValue = rxu::value_type_t<Observable>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, BinaryPredicate>>
static auto member (Observable &&o, BinaryPredicate &&pred) -> decltype(o.template lift< SourceValue >(DistinctUntilChanged(std::forward< BinaryPredicate >(pred))))
 
template<class... AN>
static operators::detail::distinct_until_changed_invalid_t< AN... > member (AN...)
 

Member Function Documentation

template<class Observable , class SourceValue = rxu::value_type_t<Observable>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, rxu::equal_to<>>>
static auto rxcpp::member_overload< distinct_until_changed_tag >::member ( Observable &&  o) -> decltype(o.template lift<SourceValue>(DistinctUntilChanged(rxu::equal_to<>())))
inlinestatic
template<class Observable , class BinaryPredicate , class SourceValue = rxu::value_type_t<Observable>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, BinaryPredicate>>
static auto rxcpp::member_overload< distinct_until_changed_tag >::member ( Observable &&  o,
BinaryPredicate &&  pred 
) -> decltype(o.template lift<SourceValue>(DistinctUntilChanged(std::forward<BinaryPredicate>(pred))))
inlinestatic
template<class... AN>
static operators::detail::distinct_until_changed_invalid_t<AN...> rxcpp::member_overload< distinct_until_changed_tag >::member ( AN...  )
inlinestatic

The documentation for this struct was generated from the following file: