Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

28
help/iserror Normal file
View File

@@ -0,0 +1,28 @@
NAME
error - test whether a value is an error value
SYNOPSIS
iserror(x)
TYPES
x any
return zero or positive integer < 32768
DESCRIPTION
If x is not an error value, zero is returned.
If x is an error value, iserror(x) returns its error type.
EXAMPLE
> a = error(99)
print iserror(a), iserror(2 + a), iserror(2 + "a"), iserror(2 + 3)
99 99 3 0
LIMITS
none
LIBRARY
none
SEE ALSO
error, errorcodes