[back] [prev] [next] [index] [root]

 


IsChar

Returns true if the argument is a character, false otherwise.

Syntax:

b := IsChar(c);

character
  c  
boolean
  b  

See also:  IsString

Description:

no detailed description available yet


Example:


kash> IsChar('a');
true
kash> IsChar("a");
false
kash> IsChar(1);
> false


<- back[back] [prev] [next] [index] [root]