You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static getYearAndDay(Long millis) -> Tuple2<Int, Int> {
var Int year = DateTime.EPOCH_YEAR
var Int day = millis / DateTime.SECS_DAY
while (day >= (let size = getYearSize(year))) {
day -= size
year++
}
return new Tuple2(year, day)
}