Sha256: 30979cd89ad02d8964f53c5cd4ee8f9da61073ab4288fa5f1df2b1f1ddb05281
Contents?: true
Size: 1.08 KB
Versions: 11
Compression:
Stored size: 1.08 KB
Contents
module Eddy module TransactionSets module TS856 module Loops module SLN # ### Loop Summary: # # - Repeat: 1000 # - Components: # - SLN class Base < Eddy::Models::Loop::Base # @param store [Eddy::Data::Store] # @return [void] def initialize(store) @repeat_limit = 1000 super(store, Repeat) end end # (see Eddy::TransactionSets::TS856::Loops::SLN::Base) class Repeat < Eddy::Models::Loop::Repeat # @param store [Eddy::Data::Store] # @return [void] def initialize(store) @sln = Eddy::Segments::SLN.new(store) super(store, @sln) end # (see Eddy::Segments::SLN) # # @yieldparam [Eddy::Segments::SLN] # @return [Eddy::Segments::SLN] def SLN() yield(@sln) if block_given? return @sln end end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems