class Eddy::TransactionSets::TS855::Loops::N1::Repeat

(see Eddy::TransactionSets::TS855::Loops::N1::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/n1.rb, line 28
def initialize(store)
  @n1 = Eddy::Segments::N1.new(store)
  @n3 = Eddy::Segments::N3.new(store)
  @n4 = Eddy::Segments::N4.new(store)
  super(
    store,
    @n1,
    @n3,
    @n4,
  )
end

Public Instance Methods

N1() { |n1| ... } click to toggle source

(see Eddy::Segments::N1)

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

# File lib/definitions/transaction_sets/manual/855/loops/n1.rb, line 44
def N1()
  yield(@n1) if block_given?
  return @n1
end
N3() { |n3| ... } click to toggle source

(see Eddy::Segments::N3)

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

# File lib/definitions/transaction_sets/manual/855/loops/n1.rb, line 53
def N3()
  yield(@n3) if block_given?
  return @n3
end
N4() { |n4| ... } click to toggle source

(see Eddy::Segments::N4)

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

# File lib/definitions/transaction_sets/manual/855/loops/n1.rb, line 62
def N4()
  yield(@n4) if block_given?
  return @n4
end