Method: PCPEasy::PMAPI::PmUnits#==

Defined in:
lib/pcp_easy/pmapi/pm_units.rb

#==(other) ⇒ Object



40
41
42
43
44
45
46
47
48
# File 'lib/pcp_easy/pmapi/pm_units.rb', line 40

def ==(other)
  self.class == other.class && \
  dim_space == other.dim_space && \
  dim_time == other.dim_time && \
  dim_count == other.dim_count && \
  scale_space == other.scale_space && \
  scale_time == other.scale_time && \
  scale_count == other.scale_count
end