module TritonOps::Support::Feature::ComparableAsHash
Public Instance Methods
==(other)
click to toggle source
# File lib/triton-ops/support/feature/comparable_as_hash.rb, line 8 def ==(other) (other.respond_to?(:to_h) && (self.to_h == other.to_h)) || false end