SharedRegion.this

Constructs a region backed by a user-provided store. Assumes the memory was allocated with ParentAllocator (if different from `NullAllocator`).

  1. this(ubyte[] store)
    struct SharedRegion(ParentAllocator = NullAllocator, uint minAlign = platformAlignment, Flag!"growDownwards" growDownwards = No.growDownwards)
    nothrow @nogc pure nothrow @nogc
    this
    (
    ubyte[] store
    )
  2. this(size_t n)

Parameters

store ubyte[]

User-provided store backing up the region. If ParentAllocator is different from `NullAllocator`, memory is assumed to have been allocated with ParentAllocator.

Meta