Sha256: d6f6557b73d5321726edb17be6b9299271dc0f98834b7f72d29fc977987f4c73

Contents?: true

Size: 937 Bytes

Versions: 28

Compression:

Stored size: 937 Bytes

Contents

# frozen_string_literal: true

Puppet::Parser::Functions.newfunction(
  :with,
  :type => :rvalue,
  :arity => -1,
  :doc => <<~DOC
    Call a [lambda](https://puppet.com/docs/puppet/latest/lang_lambdas.html)
    with the given arguments and return the result. Since a lambda's scope is
    local to the lambda, you can use the `with` function to create private blocks
    of code within a class using variables whose values cannot be accessed outside
    of the lambda.

    **Example**: Using `with`

    ~~~ puppet
    # Concatenate three strings into a single string formatted as a list.
    $fruit = with("apples", "oranges", "bananas") |$x, $y, $z| {
      "${x}, ${y}, and ${z}"
    }
    $check_var = $x
    # $fruit contains "apples, oranges, and bananas"
    # $check_var is undefined, as the value of $x is local to the lambda.
    ~~~

    - Since 4.0.0
  DOC
) do |_args|
  Puppet::Parser::Functions::Error.is4x('with')
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
puppet-8.10.0 lib/puppet/parser/functions/with.rb
puppet-8.10.0-x86-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.10.0-x64-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.10.0-universal-darwin lib/puppet/parser/functions/with.rb
puppet-8.9.0 lib/puppet/parser/functions/with.rb
puppet-8.9.0-x86-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.9.0-x64-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.9.0-universal-darwin lib/puppet/parser/functions/with.rb
puppet-8.8.1 lib/puppet/parser/functions/with.rb
puppet-8.8.1-x86-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.8.1-x64-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.8.1-universal-darwin lib/puppet/parser/functions/with.rb
puppet-8.7.0 lib/puppet/parser/functions/with.rb
puppet-8.7.0-x86-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.7.0-x64-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.7.0-universal-darwin lib/puppet/parser/functions/with.rb
puppet-8.6.0 lib/puppet/parser/functions/with.rb
puppet-8.6.0-x86-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.6.0-x64-mingw32 lib/puppet/parser/functions/with.rb
puppet-8.6.0-universal-darwin lib/puppet/parser/functions/with.rb