Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / is_array.rb
1 #
2 # is_array.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:is_array, :type => :rvalue, :doc => <<-EOS
7 Returns true if the variable passed to this function is an array.
8     EOS
9   ) do |arguments|
10
11     function_deprecation([:is_array, 'This method is deprecated, please use the stdlib validate_legacy function, with Stdlib::Compat::Array. There is further documentation for validate_legacy function in the README.'])
12
13     raise(Puppet::ParseError, "is_array(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size < 1
14
15     type = arguments[0]
16
17     result = type.is_a?(Array)
18
19     return result
20   end
21 end