InternalCollection

A collection that can only be modified within the package.

Members

Functions

add
void add(T item)

Adds an item to the collection.

array
T[] array()
Undocumented in source. Be warned that the author may not have intended to support it.
clear
void clear()

Clears the collection.

opIndex
T opIndex(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexAssign
void opIndexAssign(T item, size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
popFront
void popFront()
Undocumented in source. Be warned that the author may not have intended to support it.

Properties

empty
bool empty [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
front
T front [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length [@property getter]

Gets the length of the collection.

Meta