a std.experimental.allocator.RCIAllocator or std.experimental.allocator.RCISharedAllocator allocator object
Complexity: O(1)
import std.experimental.allocator : theAllocator, processAllocator; auto a = Array!int(theAllocator); auto ca = const Array!int(processAllocator); auto ia = immutable Array!int(processAllocator);
Constructs a qualified array that will use the provided allocator object. For immutable objects, a RCISharedAllocator must be supplied.