3 type T_Integer_32
is range -2 ** 31 .. 2 ** 31 - 1
6 type T_Integer_64
is range -2 ** 63 .. 2 ** 63 - 1
9 C_Unit
: constant := 0.001; -- One millisecond.
10 C_First
: constant := (-2 ** 63) * C_Unit
;
11 C_Last
: constant := (2 ** 63 - 1) * C_Unit
;
14 delta C_Unit
range C_First
.. C_Last
18 function "*" (Left
: in T_Integer_32
; Right
: in My_Type
)
20 function "*" (Left
: in My_Type
; Right
: in T_Integer_32
)