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::PointerDeletable Concept Reference

The deletionability of the entry is checked using the delete key. Only for pointers/classes! This check is performed using CleanupTraits. It is used by other classes. More...

#include <management.hpp>

Concept definition

template<typename T>
concept Helper::PointerDeletable = !std::is_void_v<T> && !std::is_array_v<T> && requires(T *p) { CleanupTraits<T>::cleanup(p); }
The deletionability of the entry is checked using the delete key. Only for pointers/classes!...
Definition management.hpp:83
T forward(T... args)

Detailed Description

The deletionability of the entry is checked using the delete key. Only for pointers/classes! This check is performed using CleanupTraits. It is used by other classes.

Template Parameters
TVariable/type.