days_in_year() 공개 정적인 메소드

The functions gives the number of days in the specified Hebrew year.
public static days_in_year ( int year ) : int
year int An integer that gives the Hebrew year. ///
리턴 int
예제 #1
0
 public static bool long_heshvan(int year)
 {
     return(CCMath.mod(CCHebrewCalendar.days_in_year(year), 10) == 5);
 }
예제 #2
0
 public static bool short_kislev(int year)
 {
     return(CCMath.mod(CCHebrewCalendar.days_in_year(year), 10) == 3);
 }