aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:21:30 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:21:30 -0500
commit0a3ad8ba914ab42ebbb88a3d955f71d71d581fc1 (patch)
treee984b58347627f0417a6961dbb8e83afe4739653 /docs/tables.md
parent665050940f1562b045efe942686d04b3c3fac381 (diff)
Alphabetize and index functions
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/tables.md b/docs/tables.md
index 5af26396..bb57a972 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -133,6 +133,13 @@ iterating over any of the new values.
## Table Methods
+- [`func bump(t:@{K,V}, key: K, amount: Int = 1 -> Void)`](#`bump)
+- [`func clear(t:@{K,V})`](#`clear)
+- [`func get(t:{K,V}, key: K -> V?)`](#`get)
+- [`func has(t:{K,V}, key: K -> Bool)`](#`has)
+- [`func remove(t:{K,V}, key: K -> Void)`](#`remove)
+- [`func set(t:{K,V}, key: K, value: V -> Void)`](#`set)
+
### `bump`
**Description:**