зеркало из https://github.com/github/ruby.git
10 строки
175 B
Ruby
10 строки
175 B
Ruby
|
class Integer
|
||
|
# call-seq:
|
||
|
# int.zero? -> true or false
|
||
|
#
|
||
|
# Returns +true+ if +num+ has a zero value.
|
||
|
def zero?
|
||
|
Primitive.cexpr! 'int_zero_p(self);'
|
||
|
end
|
||
|
end
|