Skip to content

Instantly share code, notes, and snippets.

@FlatMapIO
Created November 3, 2014 03:23
Show Gist options
  • Save FlatMapIO/169f460db598c1fbbbb0 to your computer and use it in GitHub Desktop.
Save FlatMapIO/169f460db598c1fbbbb0 to your computer and use it in GitHub Desktop.
clojure mutable field type
(defprotocol IAttr
(-get [this])
(-set! [this v])
(deftype MutT [:volatile-mutable x]
IAttr
(-get [this] x)
(-set! [this v] (set! x v)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment