aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorNomura <nomura.rh@gmail.com>2023-09-07 20:26:20 +0200
committerXavier Claessens <xclaesse@gmail.com>2023-09-09 19:03:22 -0400
commit5f46ea116c6f80edd3633c03aacd7427ef3d0cec (patch)
tree8a962727656fe58689e38b07296199bbd77d9b0a /docs/markdown
parentb51bce070eead2b65e56f087acf23829a6304ae2 (diff)
downloadmeson-5f46ea116c6f80edd3633c03aacd7427ef3d0cec.zip
meson-5f46ea116c6f80edd3633c03aacd7427ef3d0cec.tar.gz
meson-5f46ea116c6f80edd3633c03aacd7427ef3d0cec.tar.bz2
Add support for padding zeroes in int.to_string() method
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/snippets/int_to_string_fill.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/markdown/snippets/int_to_string_fill.md b/docs/markdown/snippets/int_to_string_fill.md
new file mode 100644
index 0000000..2b0d250
--- /dev/null
+++ b/docs/markdown/snippets/int_to_string_fill.md
@@ -0,0 +1,20 @@
+## Added 'fill' kwarg to int.to_string()
+
+int.to_string() now accepts a `fill` argument. This allows you to pad the
+string representation of the integer with leading zeroes:
+
+```meson
+n = 4
+message(n.to_string())
+message(n.to_string(length: 3))
+
+n = -4
+message(n.to_string(length: 3))
+```
+
+OUTPUT:
+```meson
+4
+004
+-04
+``` \ No newline at end of file