# File lib/introspection/snapshot.rb, line 23
    def diff(other)
      {
        :added => other.methods - methods,
        :removed => methods - other.methods
      }
    end