Package clojure.lang

Examples of clojure.lang.Ref$TVal


    public static class ClojureObject extends RubyObject {
        public ClojureObject(Ruby runtime, RubyClass klass) {
            super(runtime, klass);
            try {
                variableTable = new Ref(PersistentVector.EMPTY);
            } catch (Exception e) {
                throw runtime.newConcurrencyError(e.getLocalizedMessage());
            }
        }
View Full Code Here

TOP

Related Classes of clojure.lang.Ref$TVal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.