How to unmap a var from a Clojure namespace
Clarice Bouwer
Software Engineering Team Lead and Director of Cloudsure
Tuesday, 21 June 2022 · Estimated 1 minute read
I was working with a multimethod that I needed to redefine in my REPL and came across this doc.
There is an entry that states if you are in the REPL and need to redefine then you will need to unmap the var because defmulti won't allow you to redef.
This is how:
(ns-unmap *ns* 'something)