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

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

#include <management.hpp>

Concept definition

template<typename T>
concept Helper::ArrayDeletable = !std::is_void_v<T> && requires(T *p) { CleanupTraits<T[]>::cleanup(p); }
The deletionability of the entry is checked using the delete key. Only for arrays!...
Definition management.hpp:92
T forward(T... args)

Detailed Description

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

Template Parameters
TVariable/type.