Class: MDArray::IteratorFastChar
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
734
735
736
|
# File 'lib/mdarray/counter.rb', line 734
def get_current
@iterator.getCharCurrent
end
|
#get_next ⇒ Object
738
739
740
|
# File 'lib/mdarray/counter.rb', line 738
def get_next
@iterator.getCharNext
end
|
#set_current(value) ⇒ Object
742
743
744
|
# File 'lib/mdarray/counter.rb', line 742
def set_current(value)
@iterator.setCharCurrent(value)
end
|
#set_next(value) ⇒ Object
746
747
748
|
# File 'lib/mdarray/counter.rb', line 746
def set_next(value)
@iterator.setCharNext(value)
end
|