PMT Renovated main-branch
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::IsCloserWithOperator Concept Reference

Check the ownership of operator() in the closer class. More...

#include <management.hpp>

Concept definition

template<typename Class, typename Type>
concept Helper::IsCloserWithOperator = requires(Class c, Type t) {
{ c(t) } -> std::same_as<void>;
}
Check the ownership of operator() in the closer class.
Definition management.hpp:374
T forward(T... args)

Detailed Description

Check the ownership of operator() in the closer class.

Template Parameters
ClassClass.
TypeNeeded type.
See also
Helper::BasicUniqueFD
Helper::BasicUniqueFP
Note
To see how this concept is used, check out Helper::BasicUniqueFD or Helper::BasicUniqueFP.