class Musicality::Change

Attributes

end_value[R]

Public Class Methods

new(end_value) click to toggle source
# File lib/musicality/notation/model/change.rb, line 8
def initialize end_value
  @end_value = end_value
end

Public Instance Methods

==(other) click to toggle source
# File lib/musicality/notation/model/change.rb, line 12
def ==(other)
  self.class == other.class &&
  self.end_value == other.end_value
end