403 Forbidden


Disable Functions:
Path : /usr/share/ruby/vendor_ruby/puppet/functions/
File Upload :
Command :
Current File : //usr/share/ruby/vendor_ruby/puppet/functions/with.rb

# 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

404 Not Found
[ LogOut ]