DynamicPool.dealloc

Returns block of memory back to the pool. Deallocating pointer to a memory not returned by the pool has undefined behavior.

  1. void dealloc(void* ptr)
  2. void dealloc(T* p)
    struct DynamicPool(size_t blockSize)
    nothrow @nogc
    void
    dealloc
    (
    T
    )
    (
    ref T* p
    )
    if (
    !is(T == void)
    )

Meta