class Musicality::Mark

Public Instance Methods

==(other) click to toggle source
# File lib/musicality/notation/model/mark.rb, line 14
def ==(other)
  self.class == other.class
end
clone() click to toggle source
# File lib/musicality/notation/model/mark.rb, line 6
def clone
  self.class.new
end
to_s() click to toggle source
# File lib/musicality/notation/model/mark.rb, line 10
def to_s
  MARK_SYMBOLS[self.class]
end