Alias isDestructorType

Check if type Type is of type destructor type (is(void function(Evoid* )pure nothrow @safe @nogc : Type))

alias isDestructorType = btl.lifetime.isDtorType;

Example

static assert(isDestructorType!(void function(Evoid* )pure));
static assert(isDestructorType!(DestructorType!long));
static assert(!isDestructorType!(long));