summaryrefslogtreecommitdiff
path: root/lib/puppet
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2013-02-12 10:01:04 -0800
committerJeff McCune <jeff@puppetlabs.com>2013-02-12 10:01:04 -0800
commit15266d9b44aea29b7838186818fd88ad2f59faf9 (patch)
tree750b902e6ecf98bbd088001c40b9884db7ed2ae8 /lib/puppet
parent8dd82d318a05c5e35bd2d8853fce8b8bf1b2c2d0 (diff)
parent3cef5d9e3323115c896e76f9e217cac061ab156f (diff)
downloadpuppet-stdlib-15266d9b44aea29b7838186818fd88ad2f59faf9.tar.gz
puppet-stdlib-15266d9b44aea29b7838186818fd88ad2f59faf9.tar.bz2
Merge branch 'fatmcgav-feature_19201'
* fatmcgav-feature_19201: (#19201) Add concat function to join two arrays closes #129
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/parser/functions/concat.rb37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/concat.rb b/lib/puppet/parser/functions/concat.rb
new file mode 100644
index 0000000..c86aa00
--- /dev/null
+++ b/lib/puppet/parser/functions/concat.rb
@@ -0,0 +1,37 @@
+#
+# concat.rb
+#
+
+module Puppet::Parser::Functions
+ newfunction(:concat, :type => :rvalue, :doc => <<-EOS
+Appends the contents of array 2 onto array 1.
+
+*Example:*
+
+ concat(['1','2','3'],['4','5','6'])
+
+Would result in:
+
+ ['1','2','3','4','5','6']
+ EOS
+ ) do |arguments|
+
+ # Check that 2 arguments have been given ...
+ raise(Puppet::ParseError, "concat(): Wrong number of arguments " +
+ "given (#{arguments.size} for 2)") if arguments.size != 2
+
+ a = arguments[0]
+ b = arguments[1]
+
+ # Check that both args are arrays.
+ unless a.is_a?(Array) and b.is_a?(Array)
+ raise(Puppet::ParseError, 'concat(): Requires array to work with')
+ end
+
+ result = a.concat(b)
+
+ return result
+ end
+end
+
+# vim: set ts=2 sw=2 et :