本文整理了Java中clojure.lang.Namespace.warnOrFailOnReplace()
方法的一些代码示例,展示了Namespace.warnOrFailOnReplace()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Namespace.warnOrFailOnReplace()
方法的具体详情如下:
包路径:clojure.lang.Namespace
类名称:Namespace
方法名:warnOrFailOnReplace
暂无
代码示例来源:origin: videlalvaro/clochure
Object reference(Symbol sym, Object val){
if(sym.ns != null)
{
throw new IllegalArgumentException("Can't intern namespace-qualified symbol");
}
IPersistentMap map = getMappings();
Object o;
while((o = map.valAt(sym)) == null)
{
IPersistentMap newMap = map.assoc(sym, val);
mappings.compareAndSet(map, newMap);
map = getMappings();
}
if(o == val)
return o;
warnOrFailOnReplace(sym, o, val);
while(!mappings.compareAndSet(map, map.assoc(sym, val)))
map = getMappings();
return val;
}
代码示例来源:origin: org.dunaj/clojure
Object reference(Symbol sym, Object val){
if(sym.ns != null)
{
throw new IllegalArgumentException("Can't intern namespace-qualified symbol");
}
IPersistentMap map = getMappings();
Object o;
while((o = map.valAt(sym)) == null)
{
IPersistentMap newMap = map.assoc(sym, val);
mappings.compareAndSet(map, newMap);
map = getMappings();
}
if(o == val)
return o;
warnOrFailOnReplace(sym, o, val);
while(!mappings.compareAndSet(map, map.assoc(sym, val)))
map = getMappings();
return val;
}
代码示例来源:origin: org.dunaj/clojure
v = new Var(this, sym);
warnOrFailOnReplace(sym, o, v);
代码示例来源:origin: videlalvaro/clochure
v = new Var(this, sym);
warnOrFailOnReplace(sym, o, v);
内容来源于网络,如有侵权,请联系作者删除!