Ruby equivalent for C "signed long long"

long-integer, ruby

Solution

No; Ruby has automatic conversion to large integer objects (Bignum) to avoid overflow. There are no types for integers with specific sizes.

Problem

is there an equivalent in Ruby for the C type "signed long long"?

Original source