Sha256: 1e6f3456cdc95fbc74f439decff781a5674847730fa6721592c7f9ca5ff9a348
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 347 # - Name: Hash Total # - Type: R # - Min/Max: 1/10 # - Description: Sum of values of the specified data element. All values in the data element will be summed without regard to decimal points (explicit or implicit) or signs. Truncation will occur on the left most digits if the sum is greater than the maximum size of the hash total of the data element. class E347 < Eddy::Element::R # @param val [Float] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "347" @name = "Hash Total" @description = "Sum of values of the specified data element. All values in the data element will be summed without regard to decimal points (explicit or implicit) or signs. Truncation will occur on the left most digits if the sum is greater than the maximum size of the hash total of the data element." super( min: 1, max: 10, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems