@@ -20,7 +20,7 @@ Defined as:
20
20
21
21
Usage:
22
22
23
- DATEISH .year
23
+ Dateish .year
24
24
25
25
Returns the year of the date
26
26
@@ -32,7 +32,7 @@ Defined as:
32
32
33
33
Usage:
34
34
35
- DATEISH .month
35
+ Dateish .month
36
36
37
37
Returns the month of the date (1..12)
38
38
@@ -44,7 +44,7 @@ Defined as:
44
44
45
45
Usage:
46
46
47
- DATEISH .day
47
+ Dateish .day
48
48
49
49
Returns the day of the month of the date (1..31)
50
50
@@ -57,7 +57,7 @@ Defined as:
57
57
58
58
Usage:
59
59
60
- DATEISH .is-leap-year(YEAR?)
60
+ Dateish .is-leap-year(YEAR?)
61
61
62
62
Returns C < True > if C < $year > is a leap year. Can be called as a class method
63
63
if the year is provided.
@@ -70,7 +70,7 @@ Defined as:
70
70
71
71
Usage:
72
72
73
- DATEISH .day-of-month
73
+ Dateish .day-of-month
74
74
75
75
Returns the day of the month of the date (1..31). Synonymous to the C < day >
76
76
method.
@@ -83,7 +83,7 @@ Defined as:
83
83
84
84
Usage:
85
85
86
- DATEISH .day-of-week
86
+ Dateish .day-of-week
87
87
88
88
Returns the day of the week, where 1 is Monday, 2 is Tuesday and Sunday is 7.
89
89
@@ -95,7 +95,7 @@ Defined as:
95
95
96
96
Usage:
97
97
98
- DATEISH .day-of-year
98
+ Dateish .day-of-year
99
99
100
100
Returns the day of the year (1..366).
101
101
@@ -107,7 +107,7 @@ Defined as:
107
107
108
108
Usage:
109
109
110
- DATEISH .days-in-month(YEAR?, MONTH?)
110
+ Dateish .days-in-month(YEAR?, MONTH?)
111
111
112
112
Returns the number of days in a month, where year and month default to that
113
113
of the invocant. If both year and month are provided, it can be called as
@@ -121,7 +121,7 @@ Defined as:
121
121
122
122
Usage:
123
123
124
- DATEISH .week
124
+ Dateish .week
125
125
126
126
Returns a list of two integers: the year, and the week number. This is because
127
127
at the start or end of a year, the week may actually belong to the other year.
0 commit comments