Core Function isVarSByte
From Sputnik Wiki
isVarSByte( $variable )
Contents |
Description
Checks if a variable is a signed 8-bit integer type.
Parameters
variable
The variable to check.
Return Value
Success: Returns true.
Failure: Returns false.
Remarks
None.
Example
$var1 = (sbyte)100; println( "Is it?: " . isVarSByte($var1) ); // Alternative println( $var1 is SByte ); // Alternative println( $var1 ~~ SByte );