(distinct? x) (distinct? x y) (distinct? x y & more)
Returns true if no two of the arguments are =
user=> (distinct? 1 2 3) true user=> (distinct? 1 2 3 3) false