failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / isblk
1 NAME
2     isblk - whether or not a value is a block
3
4 SYNOPSIS
5     isblk(val)
6
7 TYPES
8     val         any
9
10     return      0, 1, or 2
11
12 DESCRIPTION
13     isblk(val) returns 1 if val is an unnamed block, 2 if val is a
14     named block, 0 otherwise.
15
16     Note that a named block B retains its name after its data block is
17     freed by rmblk(B).  That a named block B has null data block may be
18     tested using sizeof(B);  this returns 0 if and only if the memory
19     has been freed.
20
21 EXAMPLE
22     > A = blk()
23     > isblk(A)
24         1
25
26     > B = blk("beta")
27     > isblk(B)
28         2
29
30     > isblk(3)
31         0
32
33 LIMITS
34     none
35
36 LINK LIBRARY
37     none - XXX ???
38
39 SEE ALSO
40     blk, blocks, blkfree,
41     isassoc, isatty, isconfig, isdefined, iserror, iseven, isfile,
42     ishash, isident, isint, islist, ismat, ismult, isnull, isnum, isobj,
43     isobjtype, isodd, isprime, isrand, israndom, isreal, isrel,
44     issimple, issq, isstr, istype
45