Splited2

data class Splited2<A, B>(val first: A, val second: B)

Data class that holds two values split from a combined field.

Parameters

A

Type of the first value

B

Type of the second value

first

The first split value

second

The second split value

Constructors

Link copied to clipboard
constructor(first: A, second: B)

Properties

Link copied to clipboard
val first: A
Link copied to clipboard
val second: B