Returns the namespace String of a symbol or keyword, or nil if not present.
user=> (def x "Foobar") #'user/x user=> (namespace 'user/x) "user"
(namespace :admin/live-playlist-details) ;;=> "admin" (namespace :about) ;;=> nil
Sets *ns* to the namespace named by name (unevaluated), creating it if needed. references can be ...
Returns the name String of a string, symbol or keyword.
Creates and interns or locates a global var with the name of symbol and a namespace of the value of ...
Note this does not try to be "smart"
user=>(namespace 'no-such-name/no-such-var) "no-such-name" user=>(def a-var) #'user-a-var user=>(namespace 'a-var) nil