General Functions

General functions support common checks and utility operations.

FunctionDescriptionExamples
IS_EMPTYCheck if value is emptyIS_EMPTY("") → true
IS_EMPTY(NULL) → true
IS_EMPTY(0) → false
IS_EMPTY(" ") → false
IS_EMPTY(FALSE) → false
LENLength of string or collectionLEN("hello") → 5
LEN("") → 0
General Functions - TemplateDocs Documentation