class SMF::SequencerSpecific

Attributes

data[RW]

Public Class Methods

new(offset, data) click to toggle source
Calls superclass method SMF::Meta::new
# File lib/smf.rb, line 726
def initialize(offset, data)
  # data.length:0/2**28-1
  super(offset)
  @data = data
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method SMF::Event#==
# File lib/smf.rb, line 734
def == (other)
  super && data == other.data
end