StdAllocator.alloc

Makes a T using my_allocator, and returns a pointer to it.

  1. auto alloc(size_t size)
  2. auto alloc(Args args)
    struct StdAllocator
    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 T that my_allocator made.

Meta