PMT Renovated main
Partition Manager Tool is a fast, reliable, and feature-rich CLI application for Android devices that enables advanced partition operations such as backup, flashing, erasing, information retrieval, and more.
Loading...
Searching...
No Matches
Helper::Invocable Concept Reference

Checks whether the input is invocable and returns requested type. More...

#include <definations.hpp>

Concept definition

template<typename Func, typename Ret, typename... Args>
concept Helper::Invocable = std::invocable<Func, Args...> && std::same_as<std::invoke_result_t<Func, Args...>, Ret>
Checks whether the input is invocable and returns requested type.
Definition definations.hpp:72
T forward(T... args)

Detailed Description

Checks whether the input is invocable and returns requested type.

Template Parameters
FuncInput function.
RetNeeded return type.
ArgsArguments of function.