Package org.boris.xlloop.xloper

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


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

Related Classes of org.boris.xlloop.xloper.XLNum

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.