Concept Framework 1.0 documentation Contents | Index

standard.C.casts.uint32

Name Version Deprecated
uint32 version 1.0 no

Prototype:
number uint32(number)


Description:
Gets the 32 bits unsigned integer value of a number.

Example:
import standard.C.casts


class Main {
function Main() {
var decimal_number=-12.345;
var a_number=123375000;

echo "The 32 bit representation of " + decimal_number + " is ";
echo uint32(decimal_number);
echo "\n";

echo "The 32 bit representation of " + a_number + " is ";
echo uint32(a_number);
echo "\n";

}
}


Results
The 32 bit representation of -12.345000000000001 is 4294967284
The 32 bit representation of 123375000 is 123375000


Returns:
Returns the 32 bits unsigned integer value of a number.

Documented by Simona Gabriela Plesuvu, generation time: Thu Oct 15 20:02:02 2009 GMT(c)2009 RadGs Software