Class: MDArray::IteratorFastByte
Overview
Instance Attribute Summary
Attributes inherited from IteratorFast
#iterator, #mdarray
Instance Method Summary
collapse
#get_current_counter, #has_next?, #initialize, #jget_current_counter, #next
Instance Method Details
#get_current ⇒ Object
710
711
712
|
# File 'lib/mdarray/counter.rb', line 710
def get_current
@iterator.getByteCurrent
end
|
#get_next ⇒ Object
714
715
716
|
# File 'lib/mdarray/counter.rb', line 714
def get_next
@iterator.getByteNext
end
|
#set_current(value) ⇒ Object
718
719
720
|
# File 'lib/mdarray/counter.rb', line 718
def set_current(value)
@iterator.setByteCurrent(value)
end
|
#set_next(value) ⇒ Object
722
723
724
|
# File 'lib/mdarray/counter.rb', line 722
def set_next(value)
@iterator.setByteNext(value)
end
|