class Eddy::TransactionSets::TS850::Loops::PID::Repeat

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

Public Instance Methods

PID() { |pid| ... } click to toggle source

(see Eddy::Segments::PID)

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

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