Files
opentf/website/docs/language/functions/sort.html.md
Dylan Staley 0e48f58688 Revert "migrate docs to mdx"
This reverts commit 3cb12b5a52.
2021-11-22 15:57:25 -08:00

571 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
language sort - Functions - Configuration Language docs-funcs-collection-sort The sort function takes a list of strings and returns a new list with those strings sorted lexicographically.

sort Function

sort takes a list of strings and returns a new list with those strings sorted lexicographically.

The sort is in terms of Unicode codepoints, with higher codepoints appearing after lower ones in the result.

Examples

> sort(["e", "d", "a", "x"])
[
  "a",
  "d",
  "e",
  "x",
]