and

open infix fun Any.and(other: Any): Struct

Builds a conjunction (, /2, right-associative), i.e. a Tuple: if this value is already a Tuple, other is appended to it as one more item, rather than nesting a new 2-ary tuple around it — so a and b and c flattens to a single 3-ary tuple (a, b, c) rather than (a, (b, c)).