The StringList class contains a list of string values.
| StringList::StringList |
( |
) | |
|
| void StringList::append |
( |
string |
value) | |
|
Appends a string value to the end of the list.
- Parameters
-
| item | The string value to be appended. |
| string StringList::at |
( |
int |
i) | |
|
Returns the string at the specified index.
- Parameters
-
- Returns
- The string value at the index position or null if the index was out of bounds.
| void StringList::clear |
( |
void |
) | |
|
| int StringList::count |
( |
void |
) | |
|
Returns the number of strings inside the list.
- Returns
- The element count of this list.