Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / reject.rb
index 1953ffc..392f62e 100644 (file)
@@ -1,24 +1,28 @@
 #
 # reject.rb
 #
-
 module Puppet::Parser::Functions
-  newfunction(:reject, :type => :rvalue, :doc => <<-EOS) do |args|
-This function searches through an array and rejects all elements that match
-the provided regular expression.
+  newfunction(:reject, :type => :rvalue, :doc => <<-DOC) do |args|
+    This function searches through an array and rejects all elements that match
+    the provided regular expression.
+
+    *Examples:*
+
+        reject(['aaa','bbb','ccc','aaaddd'], 'aaa')
 
-*Examples:*
+    Would return:
 
-    reject(['aaa','bbb','ccc','aaaddd'], 'aaa')
+        ['bbb','ccc']
 
-Would return:
+    Note that since Puppet 4.0.0 the same is in general done with the filter function. Here is the
+    equivalence of the reject() function:
 
-    ['bbb','ccc']
-EOS
+        ['aaa','bbb','ccc','aaaddd'].filter |$x| { $x !~ /aaa/ }
+DOC
 
-    if (args.size != 2)
+    if args.size != 2
       raise Puppet::ParseError,
-        "reject(): Wrong number of arguments given #{args.size} for 2"
+            "reject(): Wrong number of arguments given #{args.size} for 2"
     end
 
     ary = args[0]