CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
IsLogical
The IsLogical function returns true if the argument is a boolean and false otherwise.
Usage:
	= isLogical(<cell_or_expression>);
Examples:
	/* returns true */
	= isLogical(TRUE);
	/* returns false */
	= isLogical("   ");
	/* returns false */
	= isLogical(0);