Tabnine Logo
RubyBignum.op_divide
Code IndexAdd Tabnine to your IDE (free)

How to use
op_divide
method
in
org.jruby.RubyBignum

Best Java code snippets using org.jruby.RubyBignum.op_divide (Showing top 8 results out of 315)

origin: org.jruby/jruby-complete

/** rb_big_div
 *
 */
@Override
public IRubyObject op_div(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, true);
}
origin: org.jruby/jruby-complete

/** rb_big_idiv
 *
 */
@Override
public IRubyObject idiv(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, false);
}
origin: org.jruby/jruby-core

/** rb_big_div
 *
 */
@Override
public IRubyObject op_div(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, true);
}
origin: org.jruby/jruby-core

/** rb_big_idiv
 *
 */
@Override
public IRubyObject idiv(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, false);
}
origin: com.ning.billing/killbill-osgi-bundles-jruby

/** rb_big_div
 *
 */
@JRubyMethod(name = {"/"}, required = 1)
public IRubyObject op_div(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, true);
}
origin: com.ning.billing/killbill-osgi-bundles-jruby

/** rb_big_idiv
 *
 */
@JRubyMethod(name = {"div"}, required = 1)
public IRubyObject op_idiv(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, false);
}
origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/** rb_big_idiv
 *
 */
@JRubyMethod(name = {"div"}, required = 1)
public IRubyObject op_idiv(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, false);
}
origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/** rb_big_div
 *
 */
@JRubyMethod(name = {"/"}, required = 1)
public IRubyObject op_div(ThreadContext context, IRubyObject other) {
  return op_divide(context, other, true);
}
org.jrubyRubyBignumop_divide

Javadoc

rb_big_divide. Shared part for both "/" and "div" operations.

Popular methods of RubyBignum

  • newBignum
  • getLongValue
  • getValue
    Getter for property value.
  • <init>
  • addFloat
  • addOther
  • big2dbl
    rb_big2dbl
  • big2long
    rb_big2long
  • bignorm
    rb_big_norm
  • checkShiftDown
  • coerceBin
  • coerceCmp
  • coerceBin,
  • coerceCmp,
  • compareTo,
  • convertToDouble,
  • createBignumClass,
  • dbl_cmp,
  • divmod,
  • even_p,
  • fix2big,
  • getBigIntegerValue

Popular in Java

  • Making http post requests using okhttp
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • JComboBox (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now