Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / is_hash.rb
1 #
2 # is_hash.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:is_hash, :type => :rvalue, :doc => <<-EOS
7 Returns true if the variable passed to this function is a hash.
8     EOS
9   ) do |arguments|
10
11     raise(Puppet::ParseError, "is_hash(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size != 1
12
13     type = arguments[0]
14
15     result = type.is_a?(Hash)
16
17     return result
18   end
19 end
20
21 # vim: set ts=2 sw=2 et :