Files
opentf/website/docs/configuration/functions/sort.html.md
Martin Atkins e7d71995f6 website: Document the remaining "collection" functions
This also renames some of the existing function pages whose source
filenames were not matching the usual naming scheme (.html.md).
2018-10-16 18:47:33 -07:00

544 B

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
functions sort function 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",
]