class Eddy::TransactionSets::TS856::Loops::HL_Order::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/856/loops/hl_order.rb, line 26 def initialize(store) @hl = Eddy::Segments::HL.new(store) @prf = Eddy::Segments::PRF.new(store) super( store, @hl, @prf, ) end
Public Instance Methods
HL() { |hl| ... }
click to toggle source
(see Eddy::Segments::HL
)
@yieldparam [Eddy::Segments::HL] @return [Eddy::Segments::HL]
# File lib/definitions/transaction_sets/manual/856/loops/hl_order.rb, line 40 def HL() yield(@hl) if block_given? return @hl end
PRF() { |prf| ... }
click to toggle source
(see Eddy::Segments::PRF
)
@yieldparam [Eddy::Segments::PRF] @return [Eddy::Segments::PRF]
# File lib/definitions/transaction_sets/manual/856/loops/hl_order.rb, line 49 def PRF() yield(@prf) if block_given? return @prf end