class Hash

Public Instance Methods

&(other) click to toggle source
# File lib/status_cake/status_cake.rb, line 2
def &(other)
  reject { |k, v| !(other.include?(k) && other[k] == v) }
end