class Numeric
Public Instance Methods
blank?()
click to toggle source
Numerics are never blank
0.blank? #=> false 1.blank? #=> false 6.54321.blank? #=> false
@return [FalseClass]
# File lib/gorillib/object/blank.rb, line 39 def blank? false end
try_dup()
click to toggle source
# File lib/gorillib/object/try_dup.rb, line 35 def try_dup self end