user=> (def store (ref {}))
#'user/store
user=> (ref-history-count store)
0
user=> (ref-max-history store)
10
user=> (ref-min-history store)
0
(defn ref-history-count
"Returns the history count of a ref"
{:added "1.1"
:static true}
[^clojure.lang.Ref ref]
(.getHistoryCount ref))
Comments top
No comments for ref-history-count. Log in to add a comment.