Method: Musicality::Meter#==

Defined in:
lib/musicality/notation/model/meter.rb

#==(other) ⇒ Object



42
43
44
45
# File 'lib/musicality/notation/model/meter.rb', line 42

def ==(other)
  return (@beats_per_measure == other.beats_per_measure &&
    @beat_duration == other.beat_duration)
end