From 2cf1fa324069daa170c1f0d321c0f7d885fff670 Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Tue, 26 Aug 2025 22:02:19 +0200 Subject: docs: clarify dict keys() and values() returns sorted arrays --- docs/yaml/elementary/dict.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs/yaml') diff --git a/docs/yaml/elementary/dict.yml b/docs/yaml/elementary/dict.yml index 3a5c484dd..525fbeefb 100644 --- a/docs/yaml/elementary/dict.yml +++ b/docs/yaml/elementary/dict.yml @@ -45,9 +45,11 @@ methods: - name: keys returns: array[str] - description: Returns an array of keys in the dictionary. + description: Returns an array of keys in the dictionary, sorted in ascending order. - name: values returns: array[any] - description: Returns an array of values in the dictionary. since: 1.10.0 + description: | + Returns an array of values in the dictionary, sorted by the + corresponding keys in ascending order. -- cgit v1.2.3