From 8623186d315eb362e89901be37bdd87331400974 Mon Sep 17 00:00:00 2001 From: kahsa Date: Mon, 26 Sep 2022 16:06:54 +0900 Subject: [PATCH] doc: add links to vlib doc - array and map (#15881) --- doc/docs.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/docs.md b/doc/docs.md index e3d5e88434..7328827808 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -642,6 +642,8 @@ age := 12 println('age = $age') ``` +See all methods of [string](https://modules.vlang.io/index.html#string) + ### Runes A `rune` represents a single Unicode character and is an alias for `u32`. To denote them, use ` @@ -1025,6 +1027,8 @@ There are further built-in methods for arrays: * `a.join(joiner)` concatenates an array of strings into one string using `joiner` string as a separator +See all methods of [array](https://modules.vlang.io/index.html#array) + See also [vlib/arrays](https://modules.vlang.io/arrays.html). ##### Sorting Arrays @@ -1301,6 +1305,8 @@ print(m) Maps are ordered by insertion, like dictionaries in Python. The order is a guaranteed language feature. This may change in the future. +See all methods of [map](https://modules.vlang.io/index.html#map) + ## Module imports For information about creating a module, see [Modules](#modules).