summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-08 22:03:25 -0400
committerpommicket <pommicket@gmail.com>2025-09-08 22:03:25 -0400
commit226d485cf148c472c4fd0efa21229736b36b2708 (patch)
tree67fe466eb4a702afa7dc9bfaf6b72af5705ee60d /site
parentf63e631a8e110c7b0a54b8b55516ad3c2d75b626 (diff)
Add all_values() function
Diffstat (limited to 'site')
-rw-r--r--site/spec.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/site/spec.html b/site/spec.html
index 0cc88b4..706e019 100644
--- a/site/spec.html
+++ b/site/spec.html
@@ -599,6 +599,11 @@ and for my.nephews.car.id is String (no schema key matches, so the default of St
in an arbitrary order.
</li>
<li>
+ <code>all_values(conf: Configuration) -&gt; List&lt;Pair&lt;String, String&gt;&gt;</code><br>
+ Returns a list of all defined keys in the configuration and their values,
+ in an arbitrary order.
+ </li>
+ <li>
<code>subkeys(conf: Configuration, key: String) -&gt; List&lt;String&gt;</code><br>
Equivalent to <code>keys(section(conf, key))</code> but may be implemented more efficiently.
</li>