IDeref
IPrintWithWriter
IVolatile
(Volatile. state)
(deftype Volatile [^:mutable state] IVolatile (-vreset! [_ new-state] (set! state new-state)) IDeref (-deref [_] state))