![]() |
Murl Engine Lua Addon API
Version 1.0 beta
|
Murl.IndexBase.StringArrayStringStdHashString
The default constructor. Create an empty index object.
Murl.Index.String new()
Construct an index containing a single item.
Murl.Index.String new(String item)
item | The item. |
Construct an index containing two items.
Murl.Index.String new(String item1, String item2)
item1 | The first item. |
item2 | The second item. |
Construct an index containing three items.
Murl.Index.String new(String item1, String item2, String item3)
item1 | The first item. |
item2 | The second item. |
item3 | The third item. |
Constructor taking an array.
Murl.Index.String new(Murl.Array.String array)
array | The array object to copy. |
The copy constructor.
Murl.Index.String new(Murl.Index.String index)
index | The index object to copy. |
Remove the last item.
String Pop()