ParcelableIntList

data class ParcelableIntList(val value: List<Int>) : Parcelable

Optimized parcelable wrapper for a list of integers, suitable for Binder transactions.

See also

Constructors

Link copied to clipboard
fun ParcelableIntList(parcel: Parcel)
Link copied to clipboard
fun ParcelableIntList(value: List<Int>)

Types

Link copied to clipboard
object CREATOR : Parcelable.Creator<ParcelableIntList>

Properties

Link copied to clipboard
val value: List<Int>

Functions

Link copied to clipboard
open override fun describeContents(): Int
Link copied to clipboard
open override fun writeToParcel(parcel: Parcel, flags: Int)