summaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorJouke Witteveen <j.witteveen@gmail.com>2025-07-24 14:17:55 +0200
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-11-28 12:41:01 +0200
commit0fb9c5a6839205cc32c2632dd20f723f00dc165b (patch)
tree0dab116976dbf400ed9f95860ac683435466d321 /docs/markdown
parent5e399434f2c3bb791f0c16f01fa85680c3f90fb7 (diff)
downloadmeson-0fb9c5a6839205cc32c2632dd20f723f00dc165b.tar.gz
interpreter: Add a slice() method to arrays
This can come in handy for instance when a custom target creates both headers and sources. Slicing the output of a `to_list()` call provides convenient access to just the headers or just the sources.
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/snippets/array-slice.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/snippets/array-slice.md b/docs/markdown/snippets/array-slice.md
new file mode 100644
index 000000000..8b503bce9
--- /dev/null
+++ b/docs/markdown/snippets/array-slice.md
@@ -0,0 +1,3 @@
+## Array `.slice()` method
+
+Arrays now have a `.slice()` method which allows for subsetting of arrays.