dsNew

Creates an array of type T on the ds with a specified initial length.

  1. T dsNew(size_t length)
    static @nogc
    T
    dsNew
    (
    T
    uint R0 = __LINE__
    string R1 = __TIMESTAMP__
    string R2 = __FILE_FULL_PATH__
    string R3 = __FUNCTION__
    )
    (
    size_t length
    )
  2. T dsNew()

Parameters

T

The element type of the array.

length size_t

The initial length of the array.

Return Value

Type: T

A new array of type T.

Meta