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
LocalDateUtils.daysBetween calls LocalDate.lengthOfYear. LocalDate.lengthOfYear was over 15% of the runtime in one of my tests (swap pricing over multiple scenarios). It might be a quick performance win to build an array of year lengths up front.
The text was updated successfully, but these errors were encountered:
LocalDateUtils.daysBetween
callsLocalDate.lengthOfYear
.LocalDate.lengthOfYear
was over 15% of the runtime in one of my tests (swap pricing over multiple scenarios). It might be a quick performance win to build an array of year lengths up front.The text was updated successfully, but these errors were encountered: