getDictionary

actual open override fun getDictionary(index: Int): Dictionary?(source)
actual open override fun getDictionary(key: String): Dictionary?(source)
expect open override fun getDictionary(index: Int): Dictionary?(source)

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

Return

a Dictionary.

Parameters

index

the index of the required value.


expect open override fun getDictionary(key: String): Dictionary?(source)

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

Return

The Dictionary object.

Parameters

key

The select result key.

actual open override fun getDictionary(index: Int): Dictionary?(source)

Gets a Dictionary at the given index. Return null if the value is not a dictionary.

Return

the Dictionary object.

Parameters

index

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


actual open override fun getDictionary(key: String): Dictionary?(source)

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

Return

the Dictionary object or null if the key doesn't exist.

Parameters

key

the key.

actual open override fun getDictionary(index: Int): Dictionary?(source)
actual open override fun getDictionary(key: String): Dictionary?(source)