Ada Programming/Attributes/'Max

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]

'Max(X, Y) is a scalar type attribute. It returns the greater of the two parameters.

Example[edit | edit source]

  type My_Enum is (Enum1, Enum2, Enum3);
  A : Integer :=  3;
  B : Integer := -5;
  X : Float :=  1.0;
  Y : Float :=  1.5;
  ...
  pragma Assert (My_Enum'Max(Enum3, Enum1) = Enum3); 
  pragma Assert (Integer'Max(A, B) = 3);
  pragma Assert (Float'Max(X, Y) = 1.5);

See also[edit | edit source]

Wikibook[edit | edit source]

Ada Reference Manual[edit | edit source]