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