diff options
author | Bruce Merry <bmerry@sarao.ac.za> | 2023-08-24 14:50:05 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2023-08-31 06:48:41 -0400 |
commit | cd30d1889f2bae34f17231b9cabe665edd57e7ba (patch) | |
tree | 3323f63877ba191efbb3c748eb5f4253a1fb5742 /docs/markdown | |
parent | 08ad7e770c88a1cda44befd26182b147e341494a (diff) | |
download | meson-cd30d1889f2bae34f17231b9cabe665edd57e7ba.zip meson-cd30d1889f2bae34f17231b9cabe665edd57e7ba.tar.gz meson-cd30d1889f2bae34f17231b9cabe665edd57e7ba.tar.bz2 |
Document that dicts can be indexed with []
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Syntax.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 9958db5..b69ad00 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -454,6 +454,15 @@ Keys must be unique: my_dict = {'foo': 42, 'foo': 43} ``` +Accessing elements of a dictionary works similarly to array indexing: + +```meson +my_dict = {'foo': 42, 'bar': 'baz'} +forty_two = my_dict['foo'] +# This will fail +my_dict['does_not_exist'] +``` + Dictionaries are immutable and do not have a guaranteed order. Dictionaries are available since 0.47.0. |