diff options
author | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
commit | 966f3b349a60b3997e58af1095bbd96671952fac (patch) | |
tree | 3c1dcdb0cd353427eb066f6926610445700a2a66 /lib/puppet/parser/functions/union.rb | |
parent | 66e0fa8f1bc5062e9d753598ad17602c378a2994 (diff) | |
parent | 9c8c8275abd76878d38a0f6f3af52dc468656283 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lib/puppet/parser/functions/union.rb')
-rw-r--r-- | lib/puppet/parser/functions/union.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/union.rb b/lib/puppet/parser/functions/union.rb new file mode 100644 index 0000000..c91bb80 --- /dev/null +++ b/lib/puppet/parser/functions/union.rb @@ -0,0 +1,34 @@ +# +# union.rb +# + +module Puppet::Parser::Functions + newfunction(:union, :type => :rvalue, :doc => <<-EOS +This function returns a union of two arrays. + +*Examples:* + + union(["a","b","c"],["b","c","d"]) + +Would return: ["a","b","c","d"] + EOS + ) do |arguments| + + # Two arguments are required + raise(Puppet::ParseError, "union(): Wrong number of arguments " + + "given (#{arguments.size} for 2)") if arguments.size != 2 + + first = arguments[0] + second = arguments[1] + + unless first.is_a?(Array) && second.is_a?(Array) + raise(Puppet::ParseError, 'union(): Requires 2 arrays') + end + + result = first | second + + return result + end +end + +# vim: set ts=2 sw=2 et : |