Determines if a type is RefCounted.
import automem.ref_counted: RefCounted; static struct Point { int x; int y; } auto s = RefCounted!Point(2, 3); static assert(isRefCounted!(typeof(s))); auto p = Point(2, 3); static assert(!isRefCounted!(typeof(p)));
See Implementation
Determines if a type is RefCounted.