class Eddy::TransactionSets::TS855::Loops::PID::Repeat

(see Eddy::TransactionSets::TS855::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/855/loops/pid.rb, line 26
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/855/loops/pid.rb, line 35
def PID()
  yield(@pid) if block_given?
  return @pid
end