Puppet Function: jira::sort_hash
- Defined in:
- functions/sort_hash.pp
- Function type:
- Puppet Language
Summary
Sort a hashOverview
4 5 6 7 |
# File 'functions/sort_hash.pp', line 4 function jira::sort_hash(Hash $input) >> Hash { # Puppet hashes are "insertion order", so this works to sort by key Hash(sort(Array($input))) } |