module Kernel

Public Instance Methods

Bignum(arg, base = 0) click to toggle source
# File lib/t/core_ext/kernel.rb, line 2
def Bignum(arg, base = 0) # rubocop:disable MethodName
  Integer(arg, base)
end
Fixnum(arg, base = 0) click to toggle source
# File lib/t/core_ext/kernel.rb, line 6
def Fixnum(arg, base = 0) # rubocop:disable MethodName
  Integer(arg, base)
end
NilClass(_) click to toggle source
# File lib/t/core_ext/kernel.rb, line 10
def NilClass(_) # rubocop:disable MethodName
  nil
end