Repository URL to install this package:
|
Version:
2.13.0 ▾
|
type Elem[X] = X match {
case String => Char
case Array[t] => t
case Iterable[t] => t
}
type Concat[Xs <: Tuple, +Ys <: Tuple] <: Tuple = Xs match {
case Unit => Ys
case x *: xs => x *: Concat[xs, Ys]
}