diff options
author | pommicket <pommicket@gmail.com> | 2025-09-08 22:03:25 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-08 22:03:25 -0400 |
commit | 226d485cf148c472c4fd0efa21229736b36b2708 (patch) | |
tree | 67fe466eb4a702afa7dc9bfaf6b72af5705ee60d | |
parent | f63e631a8e110c7b0a54b8b55516ad3c2d75b626 (diff) |
Add all_values() function
-rw-r--r-- | site/spec.html | 5 |
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) -> List<Pair<String, String>></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) -> List<String></code><br> Equivalent to <code>keys(section(conf, key))</code> but may be implemented more efficiently. </li> |