android :: Intent :: extra_bool_array
Array[Bool] extra stored as Java boolean[] with thecorresponding name
	# Retrieves the `Array[Bool]` extra stored as Java `boolean[]` with the
	# corresponding name
	fun extra_bool_array(name: String): Array[Bool]
	do
		sys.jni_env.push_local_frame(1)
		var nit_array = intent.boolean_array_extra(name.to_java_string)
		sys.jni_env.pop_local_frame
		return nit_array
	end
					lib/android/intent/intent_api10.nit:777,2--785,4