Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / sort.rb
1 #
2 #  sort.rb
3 #  Please note: This function is an implementation of a Ruby class and as such may not be entirely UTF8 compatible. To ensure compatibility please use this function with Ruby 2.4.0 or greater - https://bugs.ruby-lang.org/issues/10085.
4 #
5 module Puppet::Parser::Functions
6   newfunction(:sort, :type => :rvalue, :doc => <<-DOC
7     @summary
8       Sorts strings and arrays lexically.
9
10     @return
11       sorted string or array
12
13     Note that from Puppet 6.0.0 the same function in Puppet will be used instead of this.
14   DOC
15              ) do |arguments|
16
17     if arguments.size != 1
18       raise(Puppet::ParseError, "sort(): Wrong number of arguments given #{arguments.size} for 1")
19     end
20
21     value = arguments[0]
22
23     if value.is_a?(Array)
24       value.sort
25     elsif value.is_a?(String)
26       value.split('').sort.join('')
27     end
28   end
29 end
30
31 # vim: set ts=2 sw=2 et :