diff options
author | Alexandros Theodotou <alex@zrythm.org> | 2020-10-01 13:46:41 +0100 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-10-01 09:21:46 -0400 |
commit | a65fffd127ec7597ae4b8a745ded33c5b153e59b (patch) | |
tree | 9bcfd01ed01232b85e8e5585c4e5acd5d732460e /docs/markdown/Reference-manual.md | |
parent | 3afe18228a339987f7298fc46c01c313e77b19ae (diff) | |
download | meson-a65fffd127ec7597ae4b8a745ded33c5b153e59b.zip meson-a65fffd127ec7597ae4b8a745ded33c5b153e59b.tar.gz meson-a65fffd127ec7597ae4b8a745ded33c5b153e59b.tar.bz2 |
document keys() method of dictionary object [skip ci]
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index d315b53..3279ddf 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -2067,6 +2067,8 @@ The following methods are defined for all [dictionaries](Syntax.md#dictionaries) fallback value given as the second argument. If a single argument was given and the key was not found, causes a fatal error +- `keys()`: returns an array of keys in the dictionary + You can also iterate over dictionaries with the [`foreach` statement](Syntax.md#foreach-statements). |