Iterate Entries

v = fao:each(func)

Iterates through every value in the float array.

Calls func(i, v) where i is the index number, and v is the value.

Parameter Type Description
func function Function to call on each iteration
Returns Type Description
v number Return value from func or nil
Hint

If the function func returns a non-nil value, the loop is aborted and the value returned in v.
(Like Lua 5.0's table.foreachi function.)