From 2cb1df0e8bfeb4ce22c59454384b97a32d2f2676 Mon Sep 17 00:00:00 2001 From: Jared O'Connell Date: Wed, 14 Feb 2024 11:46:54 -0500 Subject: [PATCH] Update to account for recent changes in an engine function --- docs/arcaflow/workflows/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/arcaflow/workflows/expressions.md b/docs/arcaflow/workflows/expressions.md index c21d8d78..afb4be51 100644 --- a/docs/arcaflow/workflows/expressions.md +++ b/docs/arcaflow/workflows/expressions.md @@ -190,7 +190,7 @@ Functions: | function definition | return type | description | | ---------------------------- | ----------- | ---------------------------------------------------- | | `intToFloat(integer)` | float | Converts an integer type into a floating point type. | -| `floatToInt(float)` | integer | Converts a float type into an integer type by discarding the fraction. In other words, it is rounded to the nearest integer towards zero.
For example, `5.5` becomes `5`, and `-1.9` becomes `-1`" | +| `floatToInt(float)` | integer | Converts a float type into an integer type by discarding the fraction. In other words, it is rounded to the nearest integer towards zero.
Special cases:
  +Inf outputs the maximum 64-bit integer (9223372036854775807)
  -Inf and NaN output the minimum 64-bit integer (-9223372036854775808)\n\n"

For example, `5.5` becomes `5`, and `-1.9` becomes `-1`" | | `intToString(integer)` | string | Converts an integer to a string whose characters represent that integer in base-10.
For example, an input of `55` will output `"55"` | | `floatToString(float)` | string | Converts a floating point number to a string whose characters represent that number in base-10 as as simple decimal.
For example, an input of `5000.5` will output `"5000.5"` | | `boolToString(boolean)` | string | Returns `"true"` for `true`, and `"false"` for `false`. |