getLeapMonth method

int getLeapMonth()

Implementation

int getLeapMonth() {
  for (LunarMonth m in _months) {
    if (m.getYear() == _year && m.isLeap()) {
      return m.getMonth().abs();
    }
  }
  return 0;
}