AndroidJNI.SetFloatArrayElement
static function SetFloatArrayElement(array: IntPtr, index: int, val: float): void;
static void SetFloatArrayElement(IntPtr array, int index, float val);
static def SetFloatArrayElement(array as IntPtr, index as int, val as float) as void
Description

Sets the value of one element in a primitive array.

This function is a special case of SetFloatArrayRegion(), called with region size set to 1.

See Also: Java Native Interface Specification (Oracle)