migrate docs to mdx

This commit is contained in:
Dylan Staley
2021-11-22 15:47:36 -08:00
parent f63b6198ca
commit 3cb12b5a52
321 changed files with 4223 additions and 4602 deletions

View 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",
]
```