class Hash

Public Instance Methods

not_include?(key) click to toggle source
# File lib/core_ext/hash.rb, line 2
def not_include?(key)
  !include?(key)
end