Sha256: 093a5e02e4ad4ffe5fbe2f00c1b78b9cbd8331f5ed58fc1030fabb7ecdb8234f
Contents?: true
Size: 255 Bytes
Versions: 7
Compression:
Stored size: 255 Bytes
Contents
module Kernel def Bignum(arg, base = 0) # rubocop:disable MethodName Integer(arg, base) end def Fixnum(arg, base = 0) # rubocop:disable MethodName Integer(arg, base) end def NilClass(arg) # rubocop:disable MethodName nil end end
Version data entries
7 entries across 7 versions & 1 rubygems