View source code
Display the source code in std/datetime.d from which this page was generated on
github.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
local clone.
Page wiki
View or edit the community-maintained wiki page associated with this page.
std.datetime.date.this
- multiple declarations
- Function Date.this
- Function Date.this
Function Date.this
Prototype
ref this( int year, int month, int day ) pure @safe;
Throws
DateTimeException
if the resulting Date
would not be valid
.
Parameters
Name | Description |
---|---|
year | Year of the Gregorian Calendar. Positive values are A.D.
Non-positive values are B.C. with year 0 being the year
prior to 1 A.D. |
month | Month of the year . |
day | Day of the month . |
Function Date.this
Prototype
ref this( int day ) pure nothrow @safe;
Parameters
Name | Description |
---|---|
day | The Xth day of the Gregorian Calendar that the constructed
Date will be for. |
Authors
Jonathan M Davis and Kato Shoichi