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