View source code
Display the source code in std/datetime/date.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
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.

std.datetime.date.Date.this - multiple declarations

Function Date.this

ref this (
  int year,
  int month,
  int day
) pure @safe;

Throws

DateTimeException if the resulting Date would not be valid.

Parameters

NameDescription
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 (January is 1).
day Day of the month.

Function Date.this

ref this (
  int day
) pure nothrow @nogc @safe;

Parameters

NameDescription
day The Xth day of the Gregorian Calendar that the constructed Date will be for.

Authors

Jonathan M Davis

License

Boost License 1.0.