Ada Programming/Delimiters/+

      Operator

      Standard Operations

      Arithmetic Addition

      The "+" operator is defined as arithmetic addition for all numeric types.

      function "+" (Left, Right : T) return T;
      

      Plus sign

      The "+" operator is defined as arithmetic plus sign for all numeric types.

      function "+" (Right : T) return T;
      
      Usage
      A : constant Float   := +5.0;  -- A is now 5.0
      B : constant Integer := +5;    -- B is also 5
      

      Common Non-Standard Operations

      Type Conversion

      The operator plus sign is often used to create a type conversion operator:

      function "+" (Left : T1) return T2;
      
      ↑Jump back a section
      Last modified on 9 November 2009, at 17:48