The invocable_
concept.
More...
#include <range/v3/functional/concepts.hpp>
template<typename Fun, typename... Args>
concept ranges::invocable_ =
requires(Fun && fn) { invoke((Fun &&) fn, std::declval<Args>()...); }
The invocable_ concept.
Definition concepts.hpp:44