mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Release calc version 2.10.2t30
This commit is contained in:
39
help/istype
Normal file
39
help/istype
Normal file
@@ -0,0 +1,39 @@
|
||||
NAME
|
||||
istype - whether the type of a value is the same as another
|
||||
|
||||
SYNOPSIS
|
||||
istype(x, y)
|
||||
|
||||
TYPES
|
||||
x any, &any
|
||||
y any, &any
|
||||
|
||||
return int
|
||||
|
||||
DESCRIPTION
|
||||
Determine if x has the same type as y. This function will return 1
|
||||
if x and y are of the same type, 0 otherwise.
|
||||
|
||||
EXAMPLE
|
||||
> print istype(2, 3), istype(2, 3.0), istype(2, 2.3)
|
||||
1 1 1
|
||||
|
||||
> print istype(2, 3i), istype(2, "2"), istype(2, null())
|
||||
0 0 0
|
||||
|
||||
> mat a[2]
|
||||
> b = list(1,2,3)
|
||||
> c = assoc()
|
||||
> obj chongo {was, here} d;
|
||||
> print istype(a,b), istype(b,c), istype(c,d)
|
||||
0 0 0
|
||||
|
||||
LIMITS
|
||||
none
|
||||
|
||||
LIBRARY
|
||||
none
|
||||
|
||||
SEE ALSO
|
||||
isassoc, isfile, isident, isint, islist, ismat, isnull, isnum, isobj,
|
||||
isreal, isstr, issimple
|
Reference in New Issue
Block a user