aboutsummaryrefslogtreecommitdiff
path: root/api/tables.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'api/tables.yaml')
-rw-r--r--api/tables.yaml25
1 files changed, 25 insertions, 0 deletions
diff --git a/api/tables.yaml b/api/tables.yaml
index 6a58e818..f3b648da 100644
--- a/api/tables.yaml
+++ b/api/tables.yaml
@@ -160,3 +160,28 @@ Table.set:
>> t
= {"A"=1, "B"=2, "C"=3}
+Table.with_fallback:
+ short: return a table with a new fallback
+ description: >
+ Return a copy of a table with a different fallback table.
+ return:
+ type: '{K=V}'
+ description: >
+ The original table with a different fallback.
+ args:
+ t:
+ type: '{K=V}'
+ description: >
+ The table whose fallback will be replaced.
+ fallback:
+ type: '{K=V}?'
+ description: >
+ The new fallback table value.
+ example: |
+ t := {"A"=1; fallback={"B"=2}}
+ t2 = t.with_fallback({"B"=3"})
+ >> t2["B"]
+ = 3?
+ t3 = t.with_fallback(none)
+ >> t2["B"]
+ = none