failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / isnull
1 NAME
2     isnull - whether a value is a null value
3
4 SYNOPSIS
5     isnull(x)
6
7 TYPES
8     x           any, &any
9
10     return      int
11
12 DESCRIPTION
13     Determine if x is a null value.  This function will return 1 if x is
14     a null value, 0 otherwise.
15
16 EXAMPLE
17     > mat a[2]
18     > print isnull(a), isnull(1)
19     1 0
20
21 LIMITS
22     none
23
24 LINK LIBRARY
25     none
26
27 SEE ALSO
28     isassoc, isatty, isblk, isconfig, isdefined, iserror, iseven, isfile,
29     ishash, isident, isint, islist, ismat, ismult, isnum, isobj,
30     isobjtype, isodd, isprime, isrand, israndom, isreal, isrel,
31     issimple, issq, isstr, istype
32