class Eddy::TransactionSets::TS810::Loops::PID::Repeat
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/810/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] pid @return [Eddy::Segments::PID]
# File lib/definitions/transaction_sets/manual/810/loops/pid.rb, line 35 def PID() yield(@pid) if block_given? return @pid end