(== x)
(== x y)
(== x y & more)
Returns non-nil if nums all have the equivalent
value, otherwise false. Behavior on non nums is
undefined.
Source
(defn
==
"Returns non-nil if nums all have the equivalent\n value, otherwise false. Behavior on non nums is\n undefined."
([x] true)
([x y] (-equiv x y))
([x y & more]
(if
(== x y)
(if
(next more)
(recur y (first more) (next more))
(== y (first more)))
false)))