What is fn* and how does Clojure bootstrap?

谁都会走 提交于 2019-12-03 04:35:23

in src/jvm/clojure/lang/Compiler.java 46 line:

static final Symbol FN = Symbol.intern("fn*");

fn* implement by clojure compiler, as others special form, I guess.

Update: in analyzeSeq method, 6452-6353 line:

    if(op.equals(FN))
        return FnExpr.parse(context, form, name);

please check out FnExpr class implement code.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!