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