ChunkGCAllocator.alloc

Allocates the next size bytes from the region and returns a slice to it.

If the current chunk is too full, then a new one is allocated and used.

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

Parameters

size size_t

Number of bytes from the region to allocate.

Return Value

Type: void[]

A slice to the next size unused bytes from the region.

Meta