Jump to content

Ada Programming/Delimiters/

From Wikibooks, open books for an open world

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

Operator

[edit | edit source]

Standard Operations

[edit | edit source]

Arithmetic Addition

[edit | edit source]

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

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

Plus sign

[edit | edit source]

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

function " " (Right : T) return T;
Usage
[edit | edit source]
A : constant Float   :=  5.0;  -- A is now 5.0
B : constant Integer :=  5;    -- B is also 5

Common Non-Standard Operations

[edit | edit source]

Type Conversion

[edit | edit source]

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

function " " (Left : T1) return T2;

See also

[edit | edit source]

Wikibook

[edit | edit source]

Ada 95 Reference Manual

[edit | edit source]

Ada 2005 Reference Manual

[edit | edit source]



Ada Operators
and and then > abs &
or or else >= - mod
xor = < * rem in
not /= <= ** / not in