< Ada Programming < Attributes 
 
 
      
Ada. Time-tested, safe and secure.
Description
X'Truncation(Y) is an Ada attribute where X is any floating-point type and Y is any instance of that type. This attribute represents the truncation of Y to an integer value.
If Y is negative, then Truncation is equivalent to X'Ceiling(Y). If Y is positive, then Truncation is equivalent to X'Floor(Y).
Example
X : Float := 1.5; Y : Float := 1.0; Z : Float := -1.999;pragmaAssert (Float'Truncation(X) = 1.0); -- OkpragmaAssert (Float'Truncation(Y) = 1.0); -- OkpragmaAssert (Float'Truncation(Z) = -1.0); -- OkpragmaAssert (Float'Truncation(Z) = -2.0); -- Wrong
See also
Wikibook
Ada Reference Manual
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.