nogc_initialize

Initializes the objects at elements, filling them out with their default state.

  1. T nogc_initialize(void[] dst)
  2. T nogc_initialize(T element)
  3. T[] nogc_initialize(T[] elements)
    @nogc @trusted
    T[]
    nogc_initialize
    (
    T
    )
    ()

Parameters

elements T[]

A slice of the elements to initialize

Return Value

Type: T[]

The slice with now initialized contents.

Meta