library / org.akop.kotx.ext.app / android.os.Parcel

Extensions for android.os.Parcel

readBool

fun Parcel.readBool(): Boolean

Reads a boolean value from the Parcel (converted from a byte).

readTypedParcelable

fun <T : Parcelable> Parcel.readTypedParcelable(): T?

Reified version of Parcel.readParcelable that allows classloader argument to be omitted.

writeBool

fun Parcel.writeBool(value: Boolean): Unit

Writes a boolean value to the Parcel (as a byte).