Quadruple

data class Quadruple<out A, out B, out C, out D>(val first: A, val second: B, val third: C, val fourth: D)(source)

Carries Quadruple data through the SDAI core common layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(first: A, second: B, third: C, fourth: D)

Properties

Link copied to clipboard
val first: A

Exposes the first value used by the SDAI core common layer.

Link copied to clipboard
val fourth: D

Exposes the fourth value used by the SDAI core common layer.

Link copied to clipboard
val second: B

Exposes the second value used by the SDAI core common layer.

Link copied to clipboard
val third: C

Exposes the third value used by the SDAI core common layer.

Functions

Link copied to clipboard
open override fun toString(): String

Converts SDAI data with toString.