Core Function isVarUIntPtr
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> isVarUIntPtr( $variable ) </pre> === Description === Checks if a variable is an unsigned pointer type. === Parameters === ==== variable ==== The variable to check. ==...")
Newer edit →
(Created page with "<pre> isVarUIntPtr( $variable ) </pre> === Description === Checks if a variable is an unsigned pointer type. === Parameters === ==== variable ==== The variable to check. ==...")
Newer edit →
Revision as of 11:00, 29 August 2013
isVarUIntPtr( $variable )
Contents |
Description
Checks if a variable is an unsigned pointer type.
Parameters
variable
The variable to check.
Return Value
Success: Returns true.
Failure: Returns false.
Remarks
None.
Example
$var1 = (UIntPtr)100; println( "Is it?: " . isVarUIntPtr($var1) ); // Alternative println( $var1 is UIntPtr ); // Alternative println( $var1 ~~ UIntPtr );