Core Function isVarIntPtr
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> isVarIntPtr( $variable ) </pre> === Description === Checks if a variable is an signed pointer type. === Parameters === ==== variable ==== The variable to check. === R...") |
m (1 revision) |
Revision as of 21:41, 11 August 2014
isVarIntPtr( $variable )
Contents |
Description
Checks if a variable is an signed pointer type.
Parameters
variable
The variable to check.
Return Value
Success: Returns true.
Failure: Returns false.
Remarks
None.
Example
$var1 = (IntPtr)100; println( "Is it?: " . isVarIntPtr($var1) ); // Alternative println( $var1 is IntPtr ); // Alternative println( $var1 ~~ IntPtr );