SHIP:Sail:ftol

From Serious Documentation
Revision as of 10:37, 29 September 2016 by CarltonHeyer (talk | contribs) (Created page with "__NOTOC__ {{SailFuncTableStart|}}<onlyinclude> |{{SailFunc|ftol}}||{{DataType|Long}}||style="text-align:center;"|v5.1.0||Casts a {{DataType|Float}} to a {{DataType|Long}} {{v5...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Function Returns Introduced Description
ftol Long v5.1.0 Casts a Float to a Long Badge SHIPv5.gif

See Also:

Prototype

Long ftol(Float n);

Parameters/Return Value

Parameter Data Type Description
n Float the number to find the ceiling value of
Return Long the integer portion of the supplied number

Detailed Description

The ftol() function returns the returns the integer portion of the supplied floating point number. Note this is a truncating conversion (as in Java and C), not a rounding conversion. Often, you'll want to use rounding as well, for example ftol(round(x)).

Examples

Example Result Notes
ftol(-5.1f); -5
ftol(5.2f); 5