Core Function isVarUIntPtr
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> isVarUIntPtr( $variable ) </pre> === Description === Checks if a variable is an unsigned pointer type. === Parameters === ==== variable ==== The variable to check. ==...") |
m (1 revision) |
(One intermediate revision by one user not shown) |
Latest revision as of 12:37, 14 June 2015
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 );