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) |
(One intermediate revision by one user not shown) |
Latest revision as of 12:37, 14 June 2015
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 );