class Eddy::TransactionSets::TS850::Loops::CTP::Repeat

(see Eddy::TransactionSets::TS850::Loops::CTP::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/850/loops/ctp.rb, line 25
def initialize(store)
  @ctp = Eddy::Segments::CTP.new(store)
  super(
    store,
    @ctp,
  )
end

Public Instance Methods

CTP() { |ctp| ... } click to toggle source

(see Eddy::Segments::CTP)

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

# File lib/definitions/transaction_sets/manual/850/loops/ctp.rb, line 37
def CTP()
  yield(@ctp) if block_given?
  return @ctp
end