Core Function isVarUPtr

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "<pre> isVarUPtr( $variable ) </pre> === Description === Checks if a variable is an unsigned pointer type. === Parameters === ==== variable ==== The variable to check. === R...")
 
m (1 revision)

Revision as of 21:41, 11 August 2014

isVarUPtr( $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?: " . isVarUPtr($var1) );
// Alternative
println( $var1 is UIntPtr  );
// Alternative
println( $var1 ~~ UIntPtr  );
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox