forEachBindingIndexed

inline fun ObservableFloatArray.forEachBindingIndexed(action: (index: Int, FloatBinding) -> Unit)
inline fun ObservableIntegerArray.forEachBindingIndexed(action: (index: Int, IntegerBinding) -> Unit)

Performs the given action on each element binding, accompanied with the index of the element.

See also


inline fun <E> ObservableList<E>.forEachBindingIndexed(action: (index: Int, Binding<E>) -> Unit)

Performs the given action on each element, providing sequential index with the element.

See also