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 constructors

IntIntPair(first: Int, second: Int)

Constructs a IntIntPair with two Int values.

Cmn

Public functions

inline operator Int

Returns the first component of the pair.

Cmn
inline operator Int

Returns the second component of the pair.

Cmn
open String
Cmn

Public properties

Int

The first value in the pair.

Cmn
Int

The second value in the pair.

Cmn

Public constructors

IntIntPair

IntIntPair(first: Int, second: Int)

Constructs a IntIntPair with two Int values.

Parameters
first: Int

the first value in the pair

second: Int

the second value in the pair

Public functions

component1

inline operator fun component1(): Int

Returns the first component of the pair. For instance, the first component of PairIntInt(3, 4) is 3.

This method allows to use destructuring declarations when working with pairs, for example:

val (first, second) = myPair

component2

inline operator fun component2(): Int

Returns the second component of the pair. For instance, the second component of PairIntInt(3, 4) is 4.

This method allows to use destructuring declarations when working with pairs, for example:

val (first, second) = myPair

toString

open fun toString(): String

Public properties

first

val firstInt

The first value in the pair.

second

val secondInt

The second value in the pair.