IntIntPair


value public final class IntIntPair


Container to ease passing around a tuple of two Int values.

Note: This class is optimized by using a value class, a Kotlin language featured not available from Java code. Java developers can get the same functionality by using Pair or by constructing a custom implementation using Int parameters directly (see LongLongPair for an example).

Summary

Public fields

final long

The internal representation of the IntIntPair.

Public constructors

IntIntPair(int first, int second)

Constructs a IntIntPair with two Int values.

Public methods

final int

Returns the first component of the pair.

final int

Returns the second component of the pair.

final int

The first value in the pair.

final int

The second value in the pair.

@NonNull String

Public fields

packedValue

Added in 1.5.0
public final long packedValue

The internal representation of the IntIntPair. packedValue has no guarantees for stability across library versions.

<h2 id="public-constructors_1" data-text="P