Get a Float Array Entry

v = fao:get(idx)

Retries a value from the float array.

Warning

Returns an out of bounds error if idx is not in the range 1..fao:count()

Hint

Use the form v = fao[n] to obtain a modulus-based fetch, equivalent to v = fao:get(n % fao:count())