exists
Checks whether a given expression yields an existing value, i.e the value is one of the supported types.
exists(expression)
#
Parametersexpression
: Any expression (such as a variable, function call or some statement) that yields some value.
#
Returnsboolean
indicating the result
#
ExampleassertFalse(exists(nonExistingVariable))