3#ifndef TETL_FUNCTIONAL_INVOKE_R_HPP
4#define TETL_FUNCTIONAL_INVOKE_R_HPP
14template <
typename R,
typename F,
typename... Args>
16constexpr auto invoke_r(F&& f, Args&&... args) -> R
Definition adjacent_find.hpp:8
constexpr bool is_void_v
Definition is_void.hpp:16
constexpr auto invoke_r(F &&f, Args &&... args) -> R
Definition invoke_r.hpp:16
constexpr auto is_invocable_r_v
Definition is_invocable_r.hpp:15
constexpr auto invoke(F &&f, Args &&... args) -> invoke_result_t< F, Args... >
Definition invoke.hpp:45
constexpr auto forward(remove_reference_t< T > ¶m) noexcept -> T &&
Forwards lvalues as either lvalues or as rvalues, depending on T. When t is a forwarding reference (a...
Definition forward.hpp:18