von Dalys Salas Vor 3 Jahren
196
Mehr dazu
Los operadores de máxima prioridad son: el operador de cálculo del valor absoluto, definido para cualquier tipo numérico, T1, el operador de negación lógica, definido para cualquier tipo booleano, modular o array monodimensional de componentes booleanos, T 2, y el operador de exponenciación, definido para cualquier tipo entero, T3, o para cualquier tipo real en coma flotante, T4.
function "abs"(Right : T) return T function "not"(Right : T) return T function "**"(Left : T; Right : Natural) return T function "**"(Left : T; Right : Integer'Base) return T
Los operadores de multiplicación y división están predefinidos entre diversas combinaciones de enteros y reales.
function "*" (Left, Right : T) return T function "/" (Left, Right : T) return T function "*"(Left : T; Right : Integer) return T function "*"(Left : Integer; Right : T) return T function "/"(Left : T; Right : Integer) return T function "*"(Left, Right : root_real) return root_real function "/"(Left, Right : root_real) return root_real function "*"(Left : root_real; Right : root_integer) return root_real function "*"(Left : root_integer; Right : root_real) return root_real function "/"(Left : root_real; Right : root_integer) return root_real function "*"(Left, Right : universal_fixed) return universal_fixed function "/"(Left, Right : universal_fixed) return universal_fixed
Los operadores unarios de adición preferidos para cualquier tipo numérico, T, son la identidad y negación.
function "+"(Right : T) return T function "–"(Right : T) return T
Los operadores de adición predefinidos para cualquier tipo numérico, T.
function "+"(Left, Right : T) return T function "–"(Left, Right : T) return T
Los operadores de igualdad están predefinido para todos los tipos no limitados.
function "=" (Left, Right : T) return Boolean function "/="(Left, Right : T) return Boolean
Están predefinidos para cualquier tipo, T, que designe una booleano, modular, o un array.
function "and"(Left, Right : T) return T function "or" (Left, Right : T) return T function "xor"(Left, Right : T) return T