Range-v3
Range algorithms, views, and actions for the Standard Library
All Classes Namespaces Files Functions Variables Typedefs Friends Macros Modules Pages
ranges::v3::composed< Second, First > Struct Template Reference
+ Inheritance diagram for ranges::v3::composed< Second, First >:

Public Member Functions

 composed (Second second, First first)
 
template<typename... Ts, typename FirstResultT = concepts::Function::result_t<function_type<First> &, Ts &&...>>
auto operator() (Ts &&...ts) noexcept(noexcept(decltype(composed::do_( std::declval< function_type< First > & >(), std::declval< function_type< Second > & >(), std::is_void< FirstResultT >{}, (Ts &&) ts...))(composed::do_( std::declval< function_type< First > & >(), std::declval< function_type< Second > & >(), std::is_void< FirstResultT >{}, (Ts &&) ts...)))) -> decltype(composed::do_( std::declval< function_type< First > & >(), std::declval< function_type< Second > & >(), std::is_void< FirstResultT >
 
template<typename... Ts, typename FirstResultT = concepts::Function::result_t<function_type<First> const &, Ts &&...>>
auto operator() (Ts &&...ts) const noexcept(noexcept(decltype(composed::do_( std::declval< function_type< First > const & >(), std::declval< function_type< Second > const & >(), std::is_void< FirstResultT >{}, (Ts &&) ts...))(composed::do_( std::declval< function_type< First > const & >(), std::declval< function_type< Second > const & >(), std::is_void< FirstResultT >{}, (Ts &&) ts...)))) -> decltype(composed::do_( std::declval< function_type< First > const & >(), std::declval< function_type< Second > const & >(), std::is_void< FirstResultT >
 

Public Attributes

Ts && ts
 

Member Data Documentation

template<typename Second , typename First >
Ts && ranges::v3::composed< Second, First >::ts
Initial value:
{
return composed::do_(
first(), second(),
std::is_void<FirstResultT>{},
(Ts &&) ts...)