Package org.jruby.ext.bigdecimal

Examples of org.jruby.ext.bigdecimal.RubyBigDecimal


        double d = SafeDoubleParser.parseDouble(arg);
        return ruby.newFloat(d);
    }

    public static RubyBigDecimal rubyBigDecimal(Ruby ruby, BigDecimal arg) {
        return new RubyBigDecimal(ruby, arg);
    }
View Full Code Here

TOP

Related Classes of org.jruby.ext.bigdecimal.RubyBigDecimal

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.