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