Sha256: 479abbd44672394a9b024c487f5798bb82bb4a217c46071b865f390f80da67fb
Contents?: true
Size: 332 Bytes
Versions: 367
Compression:
Stored size: 332 Bytes
Contents
# The same as length() - returns the size of an Array, Hash, String, or Binary value. # # @since 6.0.0 - also supporting Binary # Puppet::Functions.create_function(:size) do dispatch :generic_size do param 'Variant[Collection, String, Binary]', :arg end def generic_size(arg) call_function('length', arg) end end
Version data entries
367 entries across 367 versions & 2 rubygems