betterclist

Undocumented in source.

Members

Functions

list
List!(T, N) list(T[N] values)

Construct List from static array, inferring element type.

list
List!(T) list(T[] array)

Construct List from slice.

list
List!(U, Args.length) list(Args args)

Construct List from elements, specifying element type.

list
auto list(Args args)

Construct List from elements, inferring element type.

list
List!(U, N) list(T range)

Construct List with the specified length and type from Input Range.

list
auto list(T range)

Construct List with the specified length from Input Range, inferring element type.

list
auto list()

Construct List from Input Range at compile time.

Structs

List
struct List(T, long N = -1)
Undocumented in source.

Meta