doubleMonthInYear method

int doubleMonthInYear(
  1. int y
)

Implementation

int doubleMonthInYear(int y) {
  return (lunarInfo()[y - 1900] & 0xf);
}