From 32a88b1e07d8b869ff9d9fda144ed6f4a1e60527 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 16 Mar 2022 16:13:37 +0200 Subject: [PATCH] Sync README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d83d5f7..f493b02 100644 --- a/README.md +++ b/README.md @@ -344,6 +344,7 @@ This crate offers a set of builtin functions. | `floor` | 1 | Numeric | Returns the largest integer less than or equal to a number | | `round` | 1 | Numeric | Returns the nearest integer to a number. Rounds half-way cases away from 0.0 | | `ceil` | 1 | Numeric | Returns the smallest integer greater than or equal to a number | +| `if` | 3 | Boolean, Any, Any | If the first argument is true, returns the second argument, otherwise, returns the third | | `math::ln` | 1 | Numeric | Returns the natural logarithm of the number | | `math::log` | 2 | Numeric, Numeric | Returns the logarithm of the number with respect to an arbitrary base | | `math::log2` | 1 | Numeric | Returns the base 2 logarithm of the number |