class Eddy::TransactionSets::TS856::Loops::HL_Tare::Repeat

(see Eddy::TransactionSets::TS856::Loops::HL_Tare::Base)

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_tare.rb, line 26
def initialize(store)
  @hl = Eddy::Segments::HL.new(store)
  @man = Eddy::Segments::MAN.new(store)
  super(
    store,
    @hl,
    @man,
  )
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_tare.rb, line 40
def HL()
  yield(@hl) if block_given?
  return @hl
end
MAN() { |man| ... } click to toggle source

(see Eddy::Segments::MAN)

@yieldparam [Eddy::Segments::MAN] @return [Eddy::Segments::MAN]

# File lib/definitions/transaction_sets/manual/856/loops/hl_tare.rb, line 49
def MAN()
  yield(@man) if block_given?
  return @man
end