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
    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