module Omnibus::NullArgumentable::ClassMethods
Public Instance Methods
null?(object)
click to toggle source
Check if the given object is null.
@return [true, false]
# File lib/omnibus/null_argumentable.rb, line 41 def null?(object) object.equal?(NULL) end