ref-history-count

added
1.1

ns
clojure.core

type
function

(ref-history-count ref)

Returns the history count of a ref

                user=> (def store (ref {}))
#'user/store
user=> (ref-history-count store)
0
user=> (ref-max-history store)
10
user=> (ref-min-history store)
0