diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2011-08-18 13:45:28 -0700 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2011-08-18 13:45:28 -0700 |
commit | bdba42dbb6328ccc5bb13f0777240fdb85e538ca (patch) | |
tree | de11ef579d7ffec6c7161945da5e84b75287d629 /lib/puppet/parser/functions/has_key.rb | |
parent | ad5316f561475157e425a7fddf1365e8e89b2b9d (diff) | |
parent | 8e770b04234aacfc09c7b8ad45ffa304cb83f723 (diff) | |
download | puppet-stdlib-bdba42dbb6328ccc5bb13f0777240fdb85e538ca.tar.gz puppet-stdlib-bdba42dbb6328ccc5bb13f0777240fdb85e538ca.tar.bz2 |
Merge pull request #16 from nfagerlund/docs/v2.0.0/XXXX_function_doc_updates
Docs/v2.0.0/xxxx function doc updates
Diffstat (limited to 'lib/puppet/parser/functions/has_key.rb')
-rw-r--r-- | lib/puppet/parser/functions/has_key.rb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/puppet/parser/functions/has_key.rb b/lib/puppet/parser/functions/has_key.rb index 9c1c4c3..4657cc2 100644 --- a/lib/puppet/parser/functions/has_key.rb +++ b/lib/puppet/parser/functions/has_key.rb @@ -1,16 +1,17 @@ module Puppet::Parser::Functions newfunction(:has_key, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args| - determine if a hash has a certain key value. + Determine if a hash has a certain key value. Example: - $my_hash = {'key_one' => 'value_one'} - if has_key($my_hash, 'key_two') { - notice('we will not reach here') - } - if has_key($my_hash, 'key_one') { - notice('this will be printed') - } + + $my_hash = {'key_one' => 'value_one'} + if has_key($my_hash, 'key_two') { + notice('we will not reach here') + } + if has_key($my_hash, 'key_one') { + notice('this will be printed') + } ENDHEREDOC |