TLRegionAllocator.alloc

Allocates T.sizeof bytes, emplaces a T there, and returns a pointer to it. Warning: The allocation is NOT automatically padded to ensure proper alignment.

  1. void[] alloc(size_t size)
  2. auto alloc(Args args)
    struct TLRegionAllocator
    static
    alloc
    (
    T
    Args...
    )
    (
    Args args
    )

Parameters

args Args

Arguments to the constructor of T.

Return Value

Type: auto

A pointer or class reference to the allocated and emplaced T.

Meta