Appender.put

void put(U)(U item) if (canPutItem!U)

Appends item to the managed array. Performs encoding for char types if A is a differently typed char array.

Parameters

itemthe single item to append
void put(Range)(Range items) if (canPutConstRange!Range)
No documentation available for this declaration.
void put(Range)(Range items) if (canPutRange!Range)

Appends an entire range to the managed array. Performs encoding for char elements if A is a differently typed char array.

Parameters

itemsthe range of items to append