Sha256: 5f46780a2c56981303278c877e3f957be9f3400b02a549461c8fc13f695e36b4

Contents?: true

Size: 1.36 KB

Versions: 515

Compression:

Stored size: 1.36 KB

Contents

# Called within a class definition, establishes a containment
# relationship with another class

Puppet::Parser::Functions::newfunction(
  :contain,
  :arity => -2,
  :doc => "Contain one or more classes inside the current class. If any of
these classes are undeclared, they will be declared as if called with the
`include` function. Accepts a class name, an array of class names, or a
comma-separated list of class names.

A contained class will not be applied before the containing class is
begun, and will be finished before the containing class is finished.

You must use the class's full name;
relative names are not allowed. In addition to names in string form,
you may also directly use Class and Resource Type values that are produced by
evaluating resource and relationship expressions.

The function returns an array of references to the classes that were contained thus
allowing the function call to `contain` to directly continue.

- Since 4.0.0 support for Class and Resource Type values, absolute names
- Since 4.7.0 an Array[Type[Class[n]]] is returned with all the contained classes
"
) do |classes|
  # Call the 4.x version of this function in case 3.x ruby code uses this function
  Puppet.warn_once('deprecations', '3xfunction#contain', _("Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"))
  call_function('contain', classes)
end

Version data entries

515 entries across 515 versions & 2 rubygems

Version Path
puppet-7.34.0 lib/puppet/parser/functions/contain.rb
puppet-7.34.0-x86-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.34.0-x64-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.34.0-universal-darwin lib/puppet/parser/functions/contain.rb
puppet-7.33.0 lib/puppet/parser/functions/contain.rb
puppet-7.33.0-x86-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.33.0-x64-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.33.0-universal-darwin lib/puppet/parser/functions/contain.rb
puppet-7.32.1 lib/puppet/parser/functions/contain.rb
puppet-7.32.1-x86-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.32.1-x64-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.32.1-universal-darwin lib/puppet/parser/functions/contain.rb
puppet-7.31.0 lib/puppet/parser/functions/contain.rb
puppet-7.31.0-x86-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.31.0-x64-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.31.0-universal-darwin lib/puppet/parser/functions/contain.rb
puppet-7.30.0 lib/puppet/parser/functions/contain.rb
puppet-7.30.0-x86-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.30.0-x64-mingw32 lib/puppet/parser/functions/contain.rb
puppet-7.30.0-universal-darwin lib/puppet/parser/functions/contain.rb