class Eddy::TransactionSets::TS850::Loops::N9::Repeat
Public Class Methods
new(store)
click to toggle source
@param store [Eddy::Data::Store] @return [void]
Calls superclass method
Eddy::Models::Loop::Repeat::new
# File lib/definitions/transaction_sets/manual/850/loops/n9.rb, line 26 def initialize(store) @n9 = Eddy::Segments::N9.new(store) @mtx = Eddy::Segments::MTX.new(store) super( store, @n9, @mtx, ) end
Public Instance Methods
MTX() { |mtx| ... }
click to toggle source
(see Eddy::Segments::MTX
)
@yieldparam [Eddy::Segments::MTX] @return [Eddy::Segments::MTX]
# File lib/definitions/transaction_sets/manual/850/loops/n9.rb, line 49 def MTX() yield(@mtx) if block_given? return @mtx end
N9() { |n9| ... }
click to toggle source
(see Eddy::Segments::N9
)
@yieldparam [Eddy::Segments::N9] @return [Eddy::Segments::N9]
# File lib/definitions/transaction_sets/manual/850/loops/n9.rb, line 40 def N9() yield(@n9) if block_given? return @n9 end