mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
migrate docs to mdx
This commit is contained in:
27
website/docs/language/functions/sort.mdx
Normal file
27
website/docs/language/functions/sort.mdx
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
page_title: sort - Functions - Configuration Language
|
||||
description: |-
|
||||
The sort function takes a list of strings and returns a new list with those
|
||||
strings sorted lexicographically.
|
||||
sidebar_title: sort
|
||||
---
|
||||
|
||||
# `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",
|
||||
]
|
||||
```
|
||||
Reference in New Issue
Block a user