data class Quadruple<A, B, C, D>(val first: A, val second: B, val third: C, val fourth: D) A data class representing a quadruple of values.
Parameters
the type of the first value
the type of the second value
the type of the third value
the type of the fourth value