Package org.renjin.sexp

Examples of org.renjin.sexp.HashFrame


  }


  private static SEXP R_execClosure(Context context, FunctionCall call, Closure op, PairList arglist,
      Environment callerenv, Environment newrho) {
    return Calls.applyClosure(op, context, callerenv, call, arglist, newrho, new HashFrame());
  }
View Full Code Here


    Session session = new SessionBuilder()
        .bind(PackageLoader.class, new AetherPackageLoader())
        .bind(VectorPipeliner.class, new MultiThreadedVectorPipeliner(threadPool))
        .build();
    Environment replEnv = session.getGlobalEnvironment().insertAbove(new HashFrame());
    loadDefaultPackages(session);
    return session;
  }
View Full Code Here

TOP

Related Classes of org.renjin.sexp.HashFrame

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.