Method: MessagePack::Timestamp#==

Defined in:
lib/msgpack/timestamp.rb

#==(other) ⇒ Object



72
73
74
# File 'lib/msgpack/timestamp.rb', line 72

def ==(other)
  other.class == self.class && sec == other.sec && nsec == other.nsec
end