From de49bc5bb3198f450cb367085f9def0d89782258 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 16 Sep 2024 16:06:19 -0400 Subject: Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operator --- docs/tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/tables.md') diff --git a/docs/tables.md b/docs/tables.md index 9de07b67..f589eb2e 100644 --- a/docs/tables.md +++ b/docs/tables.md @@ -195,7 +195,7 @@ The value associated with the key or null if the key is not found. >> t:get("A")! = 1 : Int ->> t:get("????"):or_else(0) +>> t:get("????") or 0 = 0 : Int ``` -- cgit v1.2.3