class Rinda::TupleEntry

Public Instance Methods

==(other) click to toggle source
# File lib/pione/patch/rinda-patch.rb, line 36
def ==(other)
  return false unless other.kind_of?(TupleEntry)
  value == other.value
end