The OpenD Programming Language

YearQuarter.this

  1. this(short year, Quarter quarter)
  2. this(short year, Month month)
  3. this(Date date)
  4. this(YearMonthDay yearMonthDay)
    struct YearQuarter
    @safe pure nothrow @nogc
    this
    (
    YearMonthDay yearMonthDay
    )
  5. this(YearMonth yearMonth)
  6. this(Timestamp timestamp)

Examples

auto ym = YearQuarter(YearMonthDay(2000, Month.dec, 31));

Meta