559560561562563564565
} 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()); }
103104105106107108109110111
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; }