plus

operator fun <T> SparseArray<T>.plus(other: SparseArray<T>): SparseArray<T>(source)

Creates a new collection by adding or replacing entries from other.


@RequiresApi(value = 21)
inline operator fun <T : Comparable<T>> Range<T>.plus(value: T): Range<T>(source)

Return the smallest range that includes this and value.


@RequiresApi(value = 21)
inline operator fun <T : Comparable<T>> Range<T>.plus(other: Range<T>): Range<T>(source)

Return the smallest range that includes this and other.