StdAllocator.alloc

Allocates size bytes from my_allocator and returns a slice to it.

  1. auto alloc(size_t size)
    struct StdAllocator
    static
    alloc
    (
    size_t size
    )
  2. auto alloc(Args args)

Parameters

size size_t

Number of bytes from my_allocator to allocate.

Return Value

Type: auto

A slice to the size bytes from my_allocator.

Meta