-
Notifications
You must be signed in to change notification settings - Fork 3
/
ada-calendar-arithmetic.ads
42 lines (32 loc) · 1.44 KB
/
ada-calendar-arithmetic.ads
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-- Standard Ada library specification
-- Copyright (c) 2003-2018 Maxim Reznik <[email protected]>
-- Copyright (c) 2004-2016 AXE Consultants
-- Copyright (c) 2004, 2005, 2006 Ada-Europe
-- Copyright (c) 2000 The MITRE Corporation, Inc.
-- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc.
-- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual
---------------------------------------------------------------------------
package Ada.Calendar.Arithmetic is
-- Arithmetic on days:
type Day_Count is
range -366 * (1 + Year_Number'Last - Year_Number'First)
.. 366 * (1 + Year_Number'Last - Year_Number'First);
subtype Leap_Seconds_Count is Integer range -2047 .. 2047;
procedure Difference (Left : in Time;
Right : in Time;
Days : out Day_Count;
Seconds : out Duration;
Leap_Seconds : out Leap_Seconds_Count);
function "+" (Left : in Time;
Right : in Day_Count)
return Time;
function "+" (Left : in Day_Count;
Right : in Time)
return Time;
function "-" (Left : in Time;
Right : in Day_Count)
return Time;
function "-" (Left : in Time;
Right : in Time)
return Day_Count;
end Ada.Calendar.Arithmetic;