FloatFloatPair


value public final class FloatFloatPair


Container to ease passing around a tuple of two Float 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 Float parameters directly (see LongLongPair for an example).

Summary

Public constructors

FloatFloatPair(float first, float second)

Constructs a FloatFloatPair with two Float values.

Public methods

final float

Returns the first component of the pair.

final float

Returns the second component of the pair.

final float

The first value in the pair.

final float

The second value in the pair.

@NonNull String

Public constructors

FloatFloatPair

Added in 1.4.0
public FloatFloatPair(float first, float second)

Constructs a FloatFloatPair with two Float values.

Parameters
float first

the first value in the pair

float second

the second value in the pair

Public methods

component1

Added in 1.4.0
public final float component1()

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

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

val (first, second) = myPair

component2

Added in 1.4.0
public final float component2()

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

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

val (first, second) = myPair

getFirst

Added in 1.4.0
public final float getFirst()

The first value in the pair.

getSecond

Added in 1.4.0
public final float getSecond()

The second value in the pair.

toString

public @NonNull String toString()