Range-v3
Range algorithms, views, and actions for the Standard Library
common_tuple.hpp File Reference

Classes

struct  ranges::common_pair< F, S >
 
struct  ranges::common_tuple< Ts >
 
struct  tuple_element< 0, ::ranges::common_pair< First, Second > >
 
struct  tuple_element< 1, ::ranges::common_pair< First, Second > >
 
struct  tuple_element< N, ::ranges::common_tuple< Ts... > >
 
struct  tuple_size<::ranges::common_pair< First, Second > >
 
struct  tuple_size<::ranges::common_tuple< Ts... > >
 

Macros

#define LOGICAL_OP(OP, CONCEPT)
 
#define LOGICAL_OP(OP, CONCEPT, RET)
 

Functions

template<typename F1 , typename S1 , typename F2 , typename S2 >
CPP_TEMPLATE_AUX_0 ranges::b (requires equality_comparable_with< F1, F2 > &&equality_comparable_with< S1, S2 >) bbbool operator
 
template<typename... Ts, typename... Us>
CPP_TEMPLATE_AUX_0 ranges::L (requires and_v< equality_comparable_with< Ts, Us >... >) bool operator
 

Variables

constexpr make_common_pair_fn ranges::make_common_pair {}
 
constexpr make_common_tuple_fn ranges::make_common_tuple {}
 

Macro Definition Documentation

◆ LOGICAL_OP [1/2]

#define LOGICAL_OP (   OP,
  CONCEPT 
)
Value:
template(typename... Ts, typename... Us)( \
requires and_v<CONCEPT<Ts, Us>...>) \
bool operator OP(common_tuple<Ts...> const & a, common_tuple<Us...> const & b) \
{ \
return a.base() OP b.base(); \
} \
template(typename... Ts, typename... Us)( \
requires and_v<CONCEPT<Ts, Us>...>) \
bool operator OP(std::tuple<Ts...> const & a, common_tuple<Us...> const & b) \
{ \
return a OP b.base(); \
} \
template(typename... Ts, typename... Us)( \
requires and_v<CONCEPT<Ts, Us>...>) \
bool operator OP(common_tuple<Ts...> const & a, std::tuple<Us...> const & b) \
{ \
return a.base() OP b; \
} \
requires(sizeof...(Ts) > 0) using lambda
For creating anonymous Invocables.

◆ LOGICAL_OP [2/2]

#define LOGICAL_OP (   OP,
  CONCEPT,
  RET 
)
Value:
template(typename F1, typename S1, typename F2, typename S2)( \
requires CONCEPT<F1, F2> AND CONCEPT<S1, S2>) \
bool operator OP(common_pair<F1, S1> const & a, common_pair<F2, S2> const & b) \
{ \
return RET; \
} \
template(typename F1, typename S1, typename F2, typename S2)( \
requires CONCEPT<F1, F2> AND CONCEPT<S1, S2>) \
bool operator OP(std::pair<F1, S1> const & a, common_pair<F2, S2> const & b) \
{ \
return RET; \
} \
template(typename F1, typename S1, typename F2, typename S2)( \
requires CONCEPT<F1, F2> AND CONCEPT<S1, S2>) \
bool operator OP(common_pair<F1, S1> const & a, std::pair<F2, S2> const & b) \
{ \
return RET; \
} \