Adds extra data corresponding to float[] java type

Returns self allowing fluent programming Be aware of possible loss of precision as Nit Float corresponds to java double and the expected value is a java float[] Consider using add_extra_array_of_double

Property definitions

android $ Intent :: add_extra_array_of_float
	# Adds extra data corresponding to `float[]` java type
	# Returns `self` allowing fluent programming
	# *Be aware of possible loss of precision as Nit `Float` corresponds to*
	# *java `double` and the expected value is a java `float[]`*
	# Consider using add_extra_array_of_double
	fun add_extra_array_of_float(name: String, value: Array[Float]): Intent
	do
		sys.jni_env.push_local_frame(1)
		intent.add_extra_array_of_float(name.to_java_string, value)
		sys.jni_env.pop_local_frame
		return self
	end
lib/android/intent/intent_api10.nit:1172,2--1183,4