我正在查看字符串的src?fn 并有几个问题。以下是string?
fn 的来源 -
(def
^{:arglists '([x])
:doc "Return true if x is a String"
:added "1.0"
:static true}
string? (fn ^:static string? [x] (instance? String x)))
- 提供 fn 静态元数据有什么作用?
- 为什么两次给出静态元数据,为 fn 或 var 指定它不应该足够吗?
- 为什么匿名 fn 有名字?