(true? x)
Returns true if x is the value true, false otherwise.
user=> (true? true) true user=> (true? 1) false user=> (true? (= 1 1)) true