Struct template adaptor
boost::stl_interfaces::adaptor
Synopsis
template<typename F>
struct adaptor {
();
template< Args> () ;
};
Description
Adapts an invocable f as a view adaptor. Calling operator(args...) will either: call f(args...) and return the result, if f(args...) is well-formed; or return closure(stl_interfaces::bind_back(f, args...)) otherwise.
adaptor public member functions
( f);
template< Args> ( args) ;