Package com.oracle.truffle.r.runtime.data

Examples of com.oracle.truffle.r.runtime.data.RDataFrame


    @Specialization
    @SlowPath
    protected Object unClass(RDataFrame arg) {
        controlVisibility();
        RDataFrame resultFrame = arg;
        if (resultFrame.isShared()) {
            resultFrame = resultFrame.copy();
        }
        return RVector.setClassAttr(resultFrame.getVector(), null, arg);
    }
View Full Code Here

TOP

Related Classes of com.oracle.truffle.r.runtime.data.RDataFrame

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.