Skip to content

Instantly share code, notes, and snippets.

Created January 4, 2013 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/b75be902b2b578e2e55b to your computer and use it in GitHub Desktop.
Save anonymous/b75be902b2b578e2e55b to your computer and use it in GitHub Desktop.
(defn get-instance [m k]
(if (contains? @m k) (get @m k)
(dosync
(if-let [v (get m k)] v
(let [newV (create-some-instance)]
(alter m assoc k newV)
newV)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment