clojure.lang.Namespace.warnOrFailOnReplace()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(78)

本文整理了Java中clojure.lang.Namespace.warnOrFailOnReplace()方法的一些代码示例,展示了Namespace.warnOrFailOnReplace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Namespace.warnOrFailOnReplace()方法的具体详情如下:
包路径:clojure.lang.Namespace
类名称:Namespace
方法名:warnOrFailOnReplace

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);

相关文章