class Hash
Public Instance Methods
without(*keys)
click to toggle source
# File lib/cfn_monitor/utils.rb, line 35 def without(*keys) dup.without!(*keys) end
without!(*keys)
click to toggle source
# File lib/cfn_monitor/utils.rb, line 39 def without!(*keys) reject! { |key| keys.include?(key) } end