class Hash

Public Instance Methods

rubylog_matches_as_guard?(other) click to toggle source
# File lib/rubylog/mixins/hash.rb, line 2
def rubylog_matches_as_guard? other
  self.each_pair do |k,v|
    return false unless v.rubylog_matches_as_guard? other.send(*k)
  end
  true
end