你好,
在 clj 和 cljs 中都接受管道字符 |
作为符号组成字符。
user> {:one|two 'three|four}
{:one|two three|four}
cljs.user> {:one|two 'three|four}
{:one|two three|four}
尽管它并未在官方文档中提到这一点。
https://clojure.org/reference/reader#_symbols
https://github.com/edn-format/edn#symbols
由于它被读取器作为符号接受,因此可以安全地假定它是一个有效的符号组成字符吗?
谢谢