class Eddy::TransactionSets::TS846::Loops::SLN::Repeat

(see Eddy::TransactionSets::TS846::Loops::SLN::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/sln.rb, line 26
def initialize(store)
  @sln = Eddy::Segments::SLN.new(store)
  @pid = Eddy::Segments::PID.new(store)
  super(
    store,
    @sln,
    @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/846/loops/sln.rb, line 49
def PID()
  yield(@pid) if block_given?
  return @pid
end
SLN() { |sln| ... } click to toggle source

(see Eddy::Segments::SLN)

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

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