source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/intersection.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 7 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

File size: 825 bytes
Line 
1#
2# intersection.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:intersection, :type => :rvalue, :doc => <<-EOS
7This function returns an array of the intersection of two.
8
9*Examples:*
10
11 intersection(["a","b","c"],["b","c","d"]) # returns ["b","c"]
12 intersection(["a","b","c"],[1,2,3,4]) # returns [] (true, when evaluated as a Boolean)
13
14 EOS
15 ) do |arguments|
16
17 # Two arguments are required
18 raise(Puppet::ParseError, "intersection(): Wrong number of arguments " +
19 "given (#{arguments.size} for 2)") if arguments.size != 2
20
21 first = arguments[0]
22 second = arguments[1]
23
24 unless first.is_a?(Array) && second.is_a?(Array)
25 raise(Puppet::ParseError, 'intersection(): Requires 2 arrays')
26 end
27
28 result = first & second
29
30 return result
31 end
32end
33
34# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.