3
我對Clojure的名字功能感到困惑。它的文檔是:如何理解Clojure名字函數?
(name x)
Returns the name String of a string, symbol or keyword.
example:
user=>(name :x)
"x"
user=>(name "x")
"x"
user=>(name 'x)
"x"
那麼這個函數有什麼意義呢? 哪裏/如何使用它?
感謝您的回答。 – danny