empty + MapEntry

Today I learned that calling into on an empty MapEntry reverses the key order:

(def me (first {:k :v}))
0.0s
(into (empty me) me)
0.0s
(into [] me)
0.0s
Runtimes (1)