Sha256: 2287886b30e27b1176351e949a757f991ce3f8484c050c3cacc04ca4c8aa1214

Contents?: true

Size: 670 Bytes

Versions: 208

Compression:

Stored size: 670 Bytes

Contents

# This is just syntactic sugar for a collection, although it will generally
# be a good bit faster.

Puppet::Parser::Functions::newfunction(:realize, :arity => -2, :doc => "Make a virtual object real.  This is useful
    when you want to know the name of the virtual object and don't want to
    bother with a full collection.  It is slightly faster than a collection,
    and, of course, is a bit shorter.  You must pass the object using a
    reference; e.g.: `realize User[luke]`." ) do |vals|

    vals = [vals] unless vals.is_a?(Array)

    coll = Puppet::Pops::Evaluator::Collectors::FixedSetCollector.new(self, vals.flatten)
    compiler.add_collection(coll)
end

Version data entries

208 entries across 208 versions & 2 rubygems

Version Path
puppet-retrospec-1.8.0 vendor/pup410/lib/puppet/parser/functions/realize.rb
puppet-retrospec-1.7.0 vendor/pup410/lib/puppet/parser/functions/realize.rb
puppet-5.3.7 lib/puppet/parser/functions/realize.rb
puppet-5.3.7-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-5.3.7-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-5.3.7-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-4.10.12 lib/puppet/parser/functions/realize.rb
puppet-4.10.12-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-4.10.12-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-4.10.12-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-4.10.11 lib/puppet/parser/functions/realize.rb
puppet-4.10.11-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-4.10.11-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-4.10.11-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-5.3.6 lib/puppet/parser/functions/realize.rb
puppet-5.3.6-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-5.3.6-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-5.3.6-universal-darwin lib/puppet/parser/functions/realize.rb
puppet-5.3.5 lib/puppet/parser/functions/realize.rb
puppet-5.3.5-x86-mingw32 lib/puppet/parser/functions/realize.rb