Ada Programming/Delimiters/+
From Wikibooks, the open-content textbooks collection
< Ada Programming | Delimiters(Redirected from Ada Programming/Operators/+)
Contents |
[edit] Operator
[edit] Standard Operations
[edit] Arithmetic Addition
The "+" operator is defined as arithmetic addition for all numeric types.
function "+" (Left, Right : T) return T;
[edit] Plus sign
The "+" operator is defined as arithmetic plus sign for all numeric types.
function "+" (Right : T) return T;
[edit] Usage
A : constant Float := +5.0; -- A is now 5.0 B : constant Integer := +5; -- B is also 5
[edit] Common Non-Standard Operations
[edit] Type Conversion
The operator plus sign is often used to create a type conversion operator:
function "+" (Left : T1) return T2;
[edit] See also
[edit] Wikibook
- Ada Programming
- Ada Programming/Delimiters
- Ada Programming/Operators
- Ada Programming/Mathematical calculations
[edit] Ada 95 Reference Manual
- 4.4 Expressions (Annotated)
- 4.5.3 Binary Adding Operators (Annotated)
- 4.5.4 Unary Adding Operators (Annotated)
[edit] Ada 2005 Reference Manual
- 4.4 Expressions (Annotated)
- 4.5.3 Binary Adding Operators (Annotated)
- 4.5.4 Unary Adding Operators (Annotated)
| Ada Operators | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|