Examples of XLNum


Examples of org.boris.xlloop.xloper.XLNum

            }
            return a;
        case XLOperType.xltypeNil:
            return XLNil.NIL;
        case XLOperType.xltypeNum:
            return new XLNum(x.num);
        case XLOperType.xltypeStr:
            return new XLString(x.str);
        }
        return null;
    }
View Full Code Here

Examples of org.boris.xlloop.xloper.XLNum

import org.boris.xlloop.xloper.XLoper;

public class BasicTest extends TestCase
{
    public void test1() throws Exception {
        assertEquals(cst.exec("Math.sin", new XLNum(0)), 0.);
    }
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.