Sha256: 56b7c975b74e81dc0f8da658b1341d3eb5aeba2000938e68794739f596c33b43
Contents?: true
Size: 549 Bytes
Versions: 24
Compression:
Stored size: 549 Bytes
Contents
# Call a lambda with the given arguments. Since the parameters of the lambda # are local to the lambda's scope, this can be used to create private sections # of logic in a class so that the variables are not visible outside of the # class. # # @example Using with # # # notices the array [1, 2, 'foo'] # with(1, 2, 'foo') |$x, $y, $z| { notice [$x, $y, $z] } # # @since 3.7.0 # Puppet::Functions.create_function(:with) do dispatch :with do repeated_param 'Any', :arg block_param end def with(*args) yield(*args) end end
Version data entries
24 entries across 24 versions & 1 rubygems