Documentation Index

Fetch the complete documentation index at: https://docs.lobster-world.com/llms.txt

Use this file to discover all available pages before exploring further.

(a greater b) and (a less c)

Prev Next

This function returns "true" if the condition b < a < c is met, otherwise, "false" is returned. The comparison is done numerically. All non-numeric types (e.g. "Date") are implicitly converted to a number.

Parameters

Parameter

Description

a

Value.

b

Value.

c

Value.

Examples

Parameter a

Parameter b

Parameter c

Result

1

1

1

false

1

2

3

false

2

1

3

true