If I put metadata in a namespace declaration:
(ns
^{:doc "Myspace documentation"}
myspace
)
can I get it ? I tried (meta myspace)
, (meta #'myspace)
but I can't get it
If you are currently in that namespace, you can do this
myspace=> (meta *ns*)
{:doc "Myspace documentation"}
If you are NOT in the namespace, you can use find-ns
foo=> (meta (find-ns 'myspace))
{:doc "Myspace documentation"}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With