[back] [prev] [next] [index] [root]
flag := IsRecType(a, type);
boolean | flag |
|
anything | a |
|
string | type |
kash> a := rec(Type := "Test", data := 1); rec( Type := "Test", data := 1 ) kash> IsRecType(a, "Test"); true kash> IsRecType(a, "Paul"); false kash> IsRecType(2, "two"); > false
<- back[back] [prev] [next] [index] [root]