BitmappedBlock.parent

The parent allocator. Depending on whether ParentAllocator holds state or not, this is a member variable or an alias for ParentAllocator.instance.

  1. ParentAllocator parent;
    struct BitmappedBlock(size_t theBlockSize, uint theAlignment = platformAlignment, ParentAllocator = NullAllocator)
    static if(stateSize!ParentAllocator)
    ParentAllocator parent;
  2. alias parent = ParentAllocator.instance

Meta