ChunkGCAllocator.alloc

Allocates at least T.sizeof bytes, emplaces a T there, and returns a pointer to it.

The allocation IS automatically padded to ensure proper alignment.

  1. void[] alloc(size_t size)
  2. auto alloc(Args args)
    struct ChunkGCAllocator
    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