getArray

actual open override fun getArray(index: Int): Array?(source)
actual open override fun getArray(key: String): Array?(source)
expect open override fun getArray(index: Int): Array?(source)

The result at the given index interpreted as an Array. Returns null if the value cannot be so interpreted.

Return

an Array.

Parameters

index

the index of the required value.


expect open override fun getArray(key: String): Array?(source)

The result value for the given key as a Array Returns null if the key doesn't exist or if the value is not an Array

Return

The Array object.

Parameters

key

The select result key.

actual open override fun getArray(index: Int): Array?(source)

Gets value at the given index as an Array. Returns null if the value doesn't exist, or its value is not an Array.

Return

the Array object.

Parameters

index

the index. This value must not exceed the bounds of the array.


actual open override fun getArray(key: String): Array?(source)

Get a property's value as an Array. Returns null if the property doesn't exist, or its value is not an array.

Return

the Array object.

Parameters

key

the key.

actual open override fun getArray(index: Int): Array?(source)
actual open override fun getArray(key: String): Array?(source)