RCDeleter
RCDeleter
Section titled “RCDeleter”#include <sbio/util/rc.hh>template<typename D, typename T>concept RCDeleterDefined in src/lib/sbio/util/rc.hh:77
Concept determining a valid RC Deleter.
A Deleter must be callable with the pointer to T (to be freed) as the argument.
Template Parameters
Section titled “Template Parameters”-
DThe Deleter type. -
TThe type the Deleter must be able to free.