Clojure – un-alias

In this guide, we will discuss Clojure un-alias. Removes the alias for the symbol from the namespace. Syntax Following is the syntax. (un-alias namespace-name aliasname) Parameters āˆ’ ā€˜namespace-nameā€™ is the namespace…

Continue ReadingClojure – un-alias

Clojure – find-ns

In this guide, we will discuss Clojure find-ns. Finds and returns a particular namespace. Syntax Following is the syntax. (find-ns namespace-name) Parameters āˆ’ ā€˜namespace-nameā€™ is the namespace which needs to be…

Continue ReadingClojure – find-ns

Clojure – *ns*

In this guide, we will discuss Clojure *ns*. This is used to look at your current namespace. Syntax Following is the syntax. (*ns*) Parameters āˆ’ None. Return Value āˆ’ Returns the namespace…

Continue ReadingClojure – *ns*