Skip to content

added intersect function #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions lib/puppet/parser/functions/intersect.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#
# intersect.rb
#

module Puppet::Parser::Functions
newfunction(:intersect, :type => :rvalue, :doc => <<-EOS
This function Intersects two arrays.

*Examles:*

intersect(['a','b','c'], ['p','a','b])

Will return: ['a','b']
EOS
) do |arguments|

raise(Puppet::ParseError, "intersect(): Wrong number of arguments " +
"given (#{arguments.size} for 2)") if arguments.size < 2

array1 = arguments[0]

unless array1.is_a?(Array)
raise(Puppet::ParseError, 'intersect(): Requires array to work with')
end

array2 = arguments[1] if arguments[1]

unless array2.is_a?(Array)
raise(Puppet::ParseError, 'intersect(): Requires array to work with')
end

# Return the set intersection of the two arrays

return array1 & array2
end
end