valueAt

open fun valueAt(index: Int): Float

Given an index in the range 0...size()-1, returns the value from the index th key-value mapping that this SparseFloatArray stores.

The values corresponding to indices in ascending order are guaranteed to be associated with keys in ascending order, e.g., valueAt(0) will return the value associated with the smallest key and valueAt(size()-1) will return the value associated with the largest key.