Murl Engine Lua Addon API  Version 1.0 beta
Murl.Index.Float


Table members

Inherited


Murl.IndexBase.FloatArrayFloatStdHashFloat

Functions


Murl.Index.Float.new()

The default constructor. Create an empty index object.

Murl.Index.Float new()

Returns
Murl.Index.Float

Murl.Index.Float.new(item)

Construct an index containing a single item.

Murl.Index.Float new(Number item)

Parameters
itemThe item.
Returns
Murl.Index.Float

Murl.Index.Float.new(item1, item2)

Construct an index containing two items.

Murl.Index.Float new(Number item1, Number item2)

Parameters
item1The first item.
item2The second item.
Returns
Murl.Index.Float

Murl.Index.Float.new(item1, item2, item3)

Construct an index containing three items.

Murl.Index.Float new(Number item1, Number item2, Number item3)

Parameters
item1The first item.
item2The second item.
item3The third item.
Returns
Murl.Index.Float

Murl.Index.Float.new(array)

Constructor taking an array.

Murl.Index.Float new(Murl.Array.Float array)

Parameters
arrayThe array object to copy.
Returns
Murl.Index.Float

Murl.Index.Float.new(index)

The copy constructor.

Murl.Index.Float new(Murl.Index.Float index)

Parameters
indexThe index object to copy.
Returns
Murl.Index.Float


Methods


Pop()

Remove the last item.

Number Pop()

Returns
Number The the removed item.