|
| | transpose ()=default |
| | transpose (F &&f) noexcept |
| | transpose (const F &f) |
| | transpose (const transpose &x)=default |
| | transpose (transpose &&x) noexcept=default |
| transpose & | operator= (const transpose &x)=default |
| transpose & | operator= (transpose &&x) noexcept=default |
| template<class T1, class T2> |
| auto | operator() (T1 &&x, T2 &&y) const &noexcept(std::is_nothrow_invocable_v< const F &, T2, T1 >) |
| template<class T1, class T2> |
| auto | operator() (T1 &&x, T2 &&y) &noexcept(std::is_nothrow_invocable_v< F &, T2, T1 >) |
| template<class T1, class T2> |
| auto | operator() (T1 &&x, T2 &&y) &&noexcept(std::is_nothrow_invocable_v< F &&, T2, T1 >) |
template<class F>
struct adobe::transpose< F >
A function object that transposes the arguments of a binary function. The call qualifiers are preserved.
Definition at line 330 of file functional.hpp.