You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Return the full day name corresponding to the day of the week of the Date or DateTime in the given `locale`.
12102
+
Return the full day name corresponding to the day of the week of the `Date` or `DateTime` in the given `locale`.
12103
12103
"""
12104
12104
Dates.dayname
12105
12105
@@ -12113,14 +12113,14 @@ Dates.Date(y)
12113
12113
doc"""
12114
12114
Date(period::Period...) -> Date
12115
12115
12116
-
Constuct a Date type by `Period` type parts. Arguments may be in any order. Date parts not provided will default to the value of `Dates.default(period)`.
12116
+
Constuct a `Date` type by `Period` type parts. Arguments may be in any order. `Date` parts not provided will default to the value of `Dates.default(period)`.
12117
12117
"""
12118
12118
Dates.Date(period::Dates.Period...)
12119
12119
12120
12120
doc"""
12121
12121
Date(f::Function, y[, m]; step=Day(1), negate=false, limit=10000) -> Date
12122
12122
12123
-
Create a Date through the adjuster API. The starting point will be constructed from the provided `y, m` arguments, and will be adjusted until `f::Function` returns `true`. The step size in adjusting can be provided manually through the `step` keyword. If `negate=true`, then the adjusting will stop when `f::Function` returns `false` instead of `true`. `limit` provides a limit to the max number of iterations the adjustment API will pursue before throwing an error (given that `f::Function` is never satisfied).
12123
+
Create a `Date` through the adjuster API. The starting point will be constructed from the provided `y, m` arguments, and will be adjusted until `f::Function` returns `true`. The step size in adjusting can be provided manually through the `step` keyword. If `negate=true`, then the adjusting will stop when `f::Function` returns `false` instead of `true`. `limit` provides a limit to the max number of iterations the adjustment API will pursue before throwing an error (given that `f::Function` is never satisfied).
12124
12124
"""
12125
12125
Dates.Date(f::Function, y)
12126
12126
@@ -12134,7 +12134,7 @@ Dates.Date(dt::DateTime)
12134
12134
doc"""
12135
12135
Date(dt::AbstractString, format::AbstractString; locale="english") -> Date
12136
12136
12137
-
Construct a Date type by parsing a `dt` date string following the pattern given in the `format` string. Follows the same conventions as `DateTime` above.
12137
+
Construct a `Date` type by parsing a `dt` date string following the pattern given in the `format` string. Follows the same conventions as `DateTime` above.
0 commit comments