Puppet Function: sort

Defined in:
lib/puppet/parser/functions/sort.rb
Function type:
Ruby 3.x API

Overview

sort()Any

Sorts strings and arrays lexically.

Returns:

  • (Any)


6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/puppet/parser/functions/sort.rb', line 6

newfunction(:sort, :type => :rvalue, :doc => <<-DOC
  Sorts strings and arrays lexically.
DOC
           ) do |arguments|

  if arguments.size != 1
    raise(Puppet::ParseError, "sort(): Wrong number of arguments given #{arguments.size} for 1")
  end

  value = arguments[0]

  if value.is_a?(Array)
    value.sort
  elsif value.is_a?(String)
    value.split('').sort.join('')
  end
end