Ada Programming/Attributes/'Delta

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Ada. Time-tested, safe and secure.
Ada. Time-tested, safe and secure.

Description[edit | edit source]

X'Delta is an Ada attribute where X is any fixed point type. This attribute represents the delta specified in the type definition of X.

Example[edit | edit source]

type My_Fixed is delta 0.1 range 0.0 .. 100.0;

pragma Assert (My_Fixed'Delta = 0.1);  -- OK

See also[edit | edit source]

Wikibook[edit | edit source]

Ada Reference Manual[edit | edit source]