Bundle

actual typealias Bundle = Bundle

Actual implementation of Bundle for Android - a type alias to android.os.Bundle.

Constructors

Link copied to clipboard
expect constructor()

Functions

Link copied to clipboard
expect fun containsKey(key: String?): Boolean

Expect declaration of containsKey for Bundle.

Link copied to clipboard
expect fun getChar(key: String, defaultValue: Char): Char

Expect declaration of getChar for Bundle.

Link copied to clipboard
expect fun getDouble(key: String, defaultValue: Double): Double

Expect declaration of getDouble for Bundle.

Link copied to clipboard
expect fun getFloat(key: String, defaultValue: Float): Float

Expect declaration of getFloat for Bundle.

Link copied to clipboard
expect fun getInt(key: String, defaultValue: Int): Int

Expect declaration of getInt for Bundle.

Link copied to clipboard
expect fun isEmpty(): Boolean

Expect declaration of isEmpty for Bundle.

Link copied to clipboard
expect fun putAll(bundle: Bundle)

Expect declaration of putAll for Bundle.

Link copied to clipboard
expect fun putDouble(key: String?, value: Double)

Expect declaration of putDouble for Bundle.

Link copied to clipboard
expect fun putFloat(key: String?, value: Float)

Expect declaration of putFloat for Bundle.

Link copied to clipboard
expect fun putInt(key: String?, value: Int)

Expect declaration of putInt for Bundle.