modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / isblk
bloba966f73f8c2c380f017b710a9e4982adebe2782b
1 NAME
2     isblk - whether or not a value is a block
4 SYNOPSIS
5     isblk(val)
7 TYPES
8     val         any
10     return      0, 1, or 2
12 DESCRIPTION
13     isblk(val) returns 1 if val is an unnamed block, 2 if val is a
14     named block, 0 otherwise.
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.
21 EXAMPLE
22     ; A = blk()
23     ; isblk(A)
24         1
26     ; B = blk("beta")
27     ; isblk(B)
28         2
30     ; isblk(3)
31         0
33 LIMITS
34     none
36 LINK LIBRARY
37     none
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
46 ## Copyright (C) 1999-2006  Landon Curt Noll
48 ## Calc is open software; you can redistribute it and/or modify it under
49 ## the terms of the version 2.1 of the GNU Lesser General Public License
50 ## as published by the Free Software Foundation.
52 ## Calc is distributed in the hope that it will be useful, but WITHOUT
53 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
54 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
55 ## Public License for more details.
57 ## A copy of version 2.1 of the GNU Lesser General Public License is
58 ## distributed with calc under the filename COPYING-LGPL.  You should have
59 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
60 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
62 ## @(#) $Revision: 30.1 $
63 ## @(#) $Id: isblk,v 30.1 2007/03/16 11:10:42 chongo Exp $
64 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/isblk,v $
66 ## Under source code control:   1997/04/06 03:03:23
67 ## File existed as early as:    1997
69 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
70 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/