AK
Size: a a a
AK
IG
IG
IG
DL
IG
AK
IG
AK
T
T
(sort-by (juxt :id1 :id2) ... my-coll)
ST
T
T
T
ST
user=> (def x {:foo 1, :bar -3})
#'user/x
user=> (def y {:foo 1, :bar -3})
#'user/y
;; Values are equal, but different objects were constructed
user=> (= x y)
true
user=> (identical? x y)
false(= {:foo 1, :bar -3} {:foo 1, :bar -3})
=> true
(= (transient {:foo 1, :bar -3}) (transient {:foo 1, :bar -3}))
=> falseST
user=> (def x {:foo 1, :bar -3})
#'user/x
user=> (def y {:foo 1, :bar -3})
#'user/y
;; Values are equal, but different objects were constructed
user=> (= x y)
true
user=> (identical? x y)
false(deftype T [a b])
=> clojure_benchmarks.playground.T
(= (T. 1 2) (T. 1 2))
=> false
(defrecord R [a b])
=> clojure_benchmarks.playground.R
(= (R. 1 2) (R. 1 2))
=> true
СС
IG
GET /healthz