Retrieves the Array[Int] extra stored as Java long[] with the

corresponding name

Property definitions

android $ Intent :: extra_long_array
	# Retrieves the `Array[Int]` extra stored as Java `long[]` with the
	# corresponding name
	fun extra_long_array(name: String): Array[Int]
	do
		sys.jni_env.push_local_frame(1)
		var nit_array = intent.long_array_extra(name.to_java_string)
		sys.jni_env.pop_local_frame
		return nit_array
	end
lib/android/intent/intent_api10.nit:928,2--936,4