Calendar.getDaysInMonth

When overridden, returns the number of days in the specified year and month of the specified era.

  1. uint getDaysInMonth(uint year, uint month)
  2. uint getDaysInMonth(uint year, uint month, uint era)
    class Calendar
    abstract const
    uint
    getDaysInMonth
    (
    uint year
    ,
    uint month
    ,
    uint era
    )

Parameters

year uint

An integer representing the year.

month uint

An integer representing the month.

era uint

An integer representing the era.

Return Value

Type: uint

The number of days in the specified year and month of the specified era.

Meta