Public Member Functions |
|
FBStringList () | |
Constructor. |
|
int | Add (str S, kReference pRef=0) |
Add a string to the list. |
|
Clear () | |
Clear the list (remove all the
items). |
|
int | Find (kReference pRef) |
Find the index where pRef is stored.
|
|
int | Find (str S) |
Find the index with the string S.
|
|
str | GetAt (int pIndex) |
Get the string at pIndex. |
|
kReference | GetReferenceAt (int pIndex) |
Get the reference store with the string at
pIndex. |
|
int | IndexOf (str S) |
Get the index of a string. |
|
InsertAt (int pIndex, str S, kReference pRef=0) | |
Insert an entry at pIndex. |
|
int | Remove (str S) |
Remove a string from the list. |
|
RemoveAt (int pIndex) | |
Remove an entry at pIndex. |
|
bool | SetAt (int pIndex, str pString) |
Set the string at pIndex. |
|
SetReferenceAt (int pIndex, kReference pRef) | |
Set the reference stored with the string at
pIndex. |
|
Sort () | |
Sort the string list (ascending).
|
FBStringList | ( | ) |
Constructor.
Clear | ( | ) |
Clear the list (remove all the items).
int Find | ( | kReference | pRef | ) |
Find the index where pRef is stored.
pRef | Reference to look for. |
Find the index with the string S.
S | String to search for. |
Get the string at pIndex.
pIndex | Index to get string at. |
kReference GetReferenceAt | ( | int | pIndex | ) |
Get the reference store with the string at pIndex.
pIndex | Index to get reference at. |
Get the index of a string.
S | String to look for. |
Insert an entry at pIndex.
pIndex | Index where item is to be inserted. | |
S | String to insert. | |
pRef | Reference to store with string(default=0). |
RemoveAt | ( | int | pIndex | ) |
Remove an entry at pIndex.
pIndex | Index where item is to be removed from. |
Set the string at pIndex.
pIndex | Index where string is to be set. | |
pString | String to set value at pIndex with. |
SetReferenceAt | ( | int | pIndex, | |
kReference | pRef | |||
) |
Set the reference stored with the string at pIndex.
pIndex | Index to store reference at. | |
pRef | Reference to store at pIndex. |
Sort | ( | ) |
Sort the string list (ascending).