sort

fun <A : Comparable<A>> sort(a: A, b: A, c: A): Triple<A, A, A>
fun <A> sort(a: A, b: A, c: A, comparator: Comparator<A>): Triple<A, A, A>
fun sort(a: Byte, b: Byte, c: Byte): Triple<Byte, Byte, Byte>
fun sort(a: Short, b: Short, c: Short): Triple<Short, Short, Short>
fun sort(a: Int, b: Int, c: Int): Triple<Int, Int, Int>
fun sort(a: Long, b: Long, c: Long): Triple<Long, Long, Long>