View source code
Display the source code in std/experimental/allocator/building_blocks/kernighan_ritchie.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function std.experimental.allocator.building_blocks.kernighan_ritchie.KRRegion.this

Create a KRRegion. If ParentAllocator is not NullAllocator, KRRegion's destructor will call parent.deallocate.

this (
  ubyte[] b
);

this (
  size_t n
);

this (
  ParentAllocator parent,
  size_t n
);

Parameters

NameDescription
b Block of memory to serve as support for the allocator. Memory must be larger than two words and word-aligned.
n Capacity desired. This constructor is defined only if ParentAllocator is not NullAllocator.

Authors

License