Examples of toRValues()


Examples of com.oracle.truffle.r.runtime.ffi.DLL.DLLInfo.toRValues()

            String lib = libVec.getDataAt(0);
            // Length not checked by GnuR
            byte local = localVec.getDataAt(0);
            try {
                DLLInfo info = DLL.load(lib, asBoolean(local), asBoolean(now));
                RList result = createDLLInfoList(info.toRValues());
                return result;
            } catch (DLLException ex) {
                throw RError.error(getEncapsulatingSourceSection(), ex);
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.