aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorBruce Merry <bmerry@sarao.ac.za>2023-08-24 14:50:05 +0200
committerXavier Claessens <xclaesse@gmail.com>2023-08-31 06:48:41 -0400
commitcd30d1889f2bae34f17231b9cabe665edd57e7ba (patch)
tree3323f63877ba191efbb3c748eb5f4253a1fb5742 /docs/markdown
parent08ad7e770c88a1cda44befd26182b147e341494a (diff)
downloadmeson-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.md9
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.