Pair

open class Pair<A, B>(source)

Simply a pair of objects.

Parameters

<A>

type of object a.

<B>

type of object b.

Constructors

Link copied to clipboard
constructor(a: A, b: B)

Properties

Link copied to clipboard
val a: A
Link copied to clipboard
val b: B

Functions

Link copied to clipboard
open fun equals(o: Any): Boolean
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun toString(): String