Ada Programming/Attributes/'Ceiling
Appearance
Description
[edit | edit source]X'Ceiling(Y) is an Ada attribute where X is any floating-point type and Y is any instance of that type. This attribute represents the smallest integer value that is greater than or equal to Y.
Example
[edit | edit source]X : Float := 1.5; Y : Float := 1.0; Z : Float := 1.999; ...pragma
Assert (Float'Ceiling(X) = 2.0 ); -- OKpragma
Assert (Float'Ceiling(Y) = 1.0 ); -- OKpragma
Assert (Float'Ceiling(Z) = 1.0 ); -- Wrong
See also
[edit | edit source]Wikibook
[edit | edit source]- Ada Programming
- Ada Programming/Attributes
- Ada Programming/Attributes/'Floor
- Ada Programming/Attributes/'Rounding
- Ada Programming/Attributes/'Unbiased_Rounding