is-null

Checks if a variable is null or undefined

Description

is-null checks if a variable is null or undefined. If multiple variables are passed in is-null’s parameters, the exit number will be a count of the number of non-null variables checked.

is-null is intended to be run non-interactively, where it doesn’t write to stdout but instead communicates its results via exit number. However if stdout is a TTY is-null will additionally write to the terminal.

The following conditions are considered “null” by is-null:

Zero length strings, strings containing the word “null” and numeric data types (eg num, int, float with the value of 0) are all not null.

Usage

is-null variable_name... -> <stdout>

Examples

Interactive output

» $baz = ""
» is-null foo bar baz
foo: undefined or null
bar: undefined or null
baz: defined and not null

None interactive output

if { is-null foobar } then {
    out "baz is undefined"
}

See Also


This document was generated from builtins/core/typemgmt/isnull_doc.yaml.

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Thu Aug 15 14:38:34 UTC 2024 against commit 50ed9d650ed9d6df391240d3c2c02e623636e508dfcdad1.

Current version is 6.2.4000 which has been verified against tests cases.