Constant RUBY_FIXNUM_MAX

Source
pub const RUBY_FIXNUM_MAX: i64 = _; // 4_611_686_018_427_387_903i64
Expand description

The maximum possible value that a fixnum can represent, 63 bits of an i64.

ยงC Declaration

/** Maximum possible value that a fixnum can represent. */
#define RUBY_FIXNUM_MAX  (LONG_MAX / 2)