Uses of Class
org.jruby.RubyNumeric

Packages that use RubyNumeric
org.jruby   
 

Uses of RubyNumeric in org.jruby
 

Subclasses of RubyNumeric in org.jruby
 class RubyBignum
           
 class RubyFixnum
          Implementation of the Fixnum class.
 class RubyFloat
           
 class RubyInteger
          Implementation of the Integer class.
 

Methods in org.jruby that return RubyNumeric
static RubyNumeric KernelModule.rand(IRubyObject recv, IRubyObject[] args)
           
 RubyNumeric RubyBignum.op_mod(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_and(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_uminus()
           
 RubyNumeric RubyBignum.op_invert()
           
 RubyNumeric RubyBignum.remainder(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_plus(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_minus(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_mul(RubyNumeric other)
           
 RubyNumeric RubyBignum.multiplyWith(RubyInteger other)
           
 RubyNumeric RubyBignum.multiplyWith(RubyFloat other)
           
 RubyNumeric RubyBignum.op_div(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_pow(RubyNumeric other)
           
 RubyNumeric[] RubyBignum.getCoerce(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_plus(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_minus(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_mul(RubyNumeric other)
           
 RubyNumeric RubyFixnum.multiplyWith(RubyFixnum other)
           
 RubyNumeric RubyFixnum.multiplyWith(RubyInteger other)
           
 RubyNumeric RubyFixnum.multiplyWith(RubyFloat other)
           
 RubyNumeric RubyFixnum.op_div(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_mod(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_pow(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_and(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_uminus()
           
 RubyNumeric RubyFloat.op_plus(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_minus(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_mul(RubyNumeric num)
           
 RubyNumeric RubyFloat.multiplyWith(RubyNumeric other)
           
 RubyNumeric RubyFloat.multiplyWith(RubyFloat other)
           
 RubyNumeric RubyFloat.multiplyWith(RubyInteger other)
           
 RubyNumeric RubyFloat.multiplyWith(RubyBignum other)
           
 RubyNumeric RubyFloat.op_div(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_mod(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_pow(RubyNumeric other)
           
 RubyNumeric RubyInteger.multiplyWith(RubyBignum value)
           
static RubyNumeric RubyNumeric.numericValue(IRubyObject arg)
           
 RubyNumeric[] RubyNumeric.getCoerce(RubyNumeric other)
          !!!
 RubyNumeric RubyNumeric.op_uplus()
          num_uplus
 RubyNumeric RubyNumeric.op_uminus()
          num_uminus
 RubyNumeric RubyNumeric.cmp(RubyNumeric other)
           
 RubyNumeric RubyNumeric.modulo(RubyNumeric other)
          num_modulo
 RubyNumeric RubyNumeric.remainder(RubyNumeric other)
          num_remainder
 RubyNumeric RubyNumeric.abs()
          num_abs
 RubyNumeric RubyNumeric.multiplyWith(RubyFixnum value)
           
abstract  RubyNumeric RubyNumeric.multiplyWith(RubyInteger value)
           
abstract  RubyNumeric RubyNumeric.multiplyWith(RubyFloat value)
           
abstract  RubyNumeric RubyNumeric.multiplyWith(RubyBignum value)
           
 

Methods in org.jruby with parameters of type RubyNumeric
static IRubyObject KernelModule.sleep(IRubyObject recv, RubyNumeric seconds)
           
 IRubyObject RubyArray.at(RubyNumeric pos)
          rb_ary_at
static java.math.BigInteger RubyBignum.bigIntValue(RubyNumeric other)
           
protected  int RubyBignum.compareValue(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_mod(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_and(RubyNumeric other)
           
 RubyNumeric RubyBignum.remainder(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_plus(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_minus(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_mul(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_div(RubyNumeric other)
           
 RubyNumeric RubyBignum.op_pow(RubyNumeric other)
           
 RubyInteger RubyBignum.op_or(RubyNumeric other)
           
 RubyInteger RubyBignum.op_xor(RubyNumeric other)
           
 RubyFixnum RubyBignum.aref(RubyNumeric pos)
           
 RubyNumeric[] RubyBignum.getCoerce(RubyNumeric other)
           
 RubyBignum RubyBignum.op_lshift(RubyNumeric other)
           
 RubyBignum RubyBignum.op_rshift(RubyNumeric other)
           
protected  int RubyFixnum.compareValue(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_plus(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_minus(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_mul(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_div(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_mod(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_pow(RubyNumeric other)
           
 RubyInteger RubyFixnum.op_lshift(RubyNumeric other)
           
 RubyInteger RubyFixnum.op_rshift(RubyNumeric other)
           
 RubyNumeric RubyFixnum.op_and(RubyNumeric other)
           
 RubyInteger RubyFixnum.op_or(RubyNumeric other)
           
 RubyInteger RubyFixnum.op_xor(RubyNumeric other)
           
 RubyFixnum RubyFixnum.aref(RubyNumeric other)
           
protected  int RubyFloat.compareValue(RubyNumeric other)
           
 RubyArray RubyFloat.coerce(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_plus(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_minus(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_mul(RubyNumeric num)
           
 RubyNumeric RubyFloat.multiplyWith(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_div(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_mod(RubyNumeric other)
           
 RubyNumeric RubyFloat.op_pow(RubyNumeric other)
           
 IRubyObject RubyInteger.downto(RubyNumeric to)
           
 IRubyObject RubyInteger.step(RubyNumeric to, RubyNumeric step)
           
 IRubyObject RubyInteger.upto(RubyNumeric to)
           
static RubyFloat RubyMath.atan2(IRubyObject recv, RubyNumeric x, RubyNumeric y)
           
static RubyFloat RubyMath.cos(IRubyObject recv, RubyNumeric x)
           
static RubyFloat RubyMath.exp(IRubyObject recv, RubyNumeric exponent)
           
static RubyArray RubyMath.frexp(IRubyObject recv, RubyNumeric other)
           
static RubyFloat RubyMath.ldexp(IRubyObject recv, RubyNumeric mantissa, RubyNumeric exponent)
           
static RubyFloat RubyMath.log(IRubyObject recv, RubyNumeric x)
          Returns the natural logarithm of x.
static RubyFloat RubyMath.log10(IRubyObject recv, RubyNumeric x)
          Returns the base 10 logarithm of x.
static RubyFloat RubyMath.sin(IRubyObject recv, RubyNumeric x)
           
static RubyFloat RubyMath.sqrt(IRubyObject recv, RubyNumeric other)
           
static RubyFloat RubyMath.tan(IRubyObject recv, RubyNumeric x)
           
 RubyArray RubyNumeric.coerce(RubyNumeric other)
          num_coerce
 RubyNumeric[] RubyNumeric.getCoerce(RubyNumeric other)
          !!!
 RubyNumeric RubyNumeric.cmp(RubyNumeric other)
           
 RubyArray RubyNumeric.divmod(RubyNumeric other)
          num_divmod
 RubyNumeric RubyNumeric.modulo(RubyNumeric other)
          num_modulo
 RubyNumeric RubyNumeric.remainder(RubyNumeric other)
          num_remainder
protected  int RubyNumeric.compareValue(RubyNumeric other)
           
 



Copyright © 2002 Jan Arne Petersen. All Rights Reserved.