class Eddy::TransactionSets::TS846::Loops::SCH::Repeat

(see Eddy::TransactionSets::TS846::Loops::SCH::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/846/loops/sch.rb, line 26
def initialize(store)
  @qty = Eddy::Segments::QTY.new(store)
  @dtm = Eddy::Segments::DTM.new(store)
  super(
    store,
    @qty,
    @dtm,
  )
end

Public Instance Methods

DTM() { |dtm| ... } click to toggle source

(see Eddy::Segments::DTM)

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

# File lib/definitions/transaction_sets/manual/846/loops/sch.rb, line 49
def DTM()
  yield(@dtm) if block_given?
  return @dtm
end
QTY() { |qty| ... } click to toggle source

(see Eddy::Segments::QTY)

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

# File lib/definitions/transaction_sets/manual/846/loops/sch.rb, line 40
def QTY()
  yield(@qty) if block_given?
  return @qty
end