Core Function isVarUShort

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "<pre> isVarUShort( $variable ) </pre> === Description === Checks if a variable is an unsigned 16-bit integer type. === Parameters === ==== variable ==== The variable to chec...")
 
 
Line 15: Line 15:
 
=== Return Value ===
 
=== Return Value ===
  
Success: Returns 1.
+
Success: Returns true.
  
Failure: Returns 0.
+
Failure: Returns false.
  
 
=== Remarks ===
 
=== Remarks ===
Line 26: Line 26:
  
 
<syntaxhighlight lang="sputnik">
 
<syntaxhighlight lang="sputnik">
$var1 = "check me";
+
$var1 = (ushort)100;
 
println( "Is it?: " . isVarUShort($var1) );
 
println( "Is it?: " . isVarUShort($var1) );
 +
// Alternative
 +
println( $var1 is UInt16  );
 +
// Alternative
 +
println( $var1 ~~ UInt16  );
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:Core Function]]
 
[[Category:Core Function]]

Latest revision as of 10:31, 29 August 2013

isVarUShort( $variable )

Contents

Description

Checks if a variable is an unsigned 16-bit integer type.

Parameters

variable

The variable to check.

Return Value

Success: Returns true.

Failure: Returns false.

Remarks

None.

Example

$var1 = (ushort)100;
println( "Is it?: " . isVarUShort($var1) );
// Alternative
println( $var1 is UInt16  );
// Alternative
println( $var1 ~~ UInt16  );
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox