Core Function isVarFloat
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> isVarFloat( $variable ) </pre> === Description === Checks if a variable is a single precision floating point type. === Parameters === ==== variable ==== The variable t...") |
|||
Line 15: | Line 15: | ||
=== Return Value === | === Return Value === | ||
− | Success: Returns | + | Success: Returns true. |
− | Failure: Returns | + | Failure: Returns false. |
=== Remarks === | === Remarks === | ||
Line 26: | Line 26: | ||
<syntaxhighlight lang="sputnik"> | <syntaxhighlight lang="sputnik"> | ||
− | $var1 = | + | $var1 = (float)100; |
println( "Is it?: " . isVarFloat($var1) ); | println( "Is it?: " . isVarFloat($var1) ); | ||
+ | // Alternative | ||
+ | println( $var1 is float ); | ||
+ | // Alternative | ||
+ | println( $var1 ~~ float ); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Core Function]] | [[Category:Core Function]] |
Latest revision as of 10:34, 29 August 2013
isVarFloat( $variable )
Contents |
Description
Checks if a variable is a single precision floating point type.
Parameters
variable
The variable to check.
Return Value
Success: Returns true.
Failure: Returns false.
Remarks
None.
Example
$var1 = (float)100; println( "Is it?: " . isVarFloat($var1) ); // Alternative println( $var1 is float ); // Alternative println( $var1 ~~ float );