Ada Programming/Attributes/'Floor
Description
X'Floor(Y) is an Ada attribute where X is any floating-point type and Y is any instance of that type. This attribute represents the largest integer value that is less than or equal to Y.
Example
X : Float := 1.5; Y : Float := 1.0; Z : Float := 1.999;pragma
Assert (Float'Floor (X) = 1.0); -- OKpragma
Assert (Float'Floor (Y) = 1.0); -- OKpragma
Assert (Float'Floor (Z) = 2.0); -- Wrong
See also
Wikibook
Ada Reference Manual
- 13.3 Operational and Representation Attributes (Annotated)Category:Book:Ada Programming/Pages containing deprecated templates
- Annex K Language-Defined Attributes (Annotated)