class PCPEasy::PMAPI::Timeval

Public Instance Methods

==(other) click to toggle source
# File lib/pcp_easy/pmapi/timeval.rb, line 9
def ==(other)
  self.class == other.class && \
  self[:tv_sec] == other[:tv_sec] && \
  self[:tv_usec] == other[:tv_usec]
end