out (allocator)
{
static if (is(typeof(allocator) == class) || is(typeof(allocator) == interface))
{
assert (!allocator.isNull, "Allocator wasn't set yet. Please provide an allocator before it is queried for usage.");
}
else
static if (is(typeof(allocator) == RCIAllocator))
{
assert (!allocator.isNull, "Expected an allocator, not null.");
}
}
Get allocator