businessDaysSince method

int businessDaysSince(
  1. DateTime other
)

Gets the number of business days since other date

Implementation

int businessDaysSince(DateTime other) {
  return DateCalculations.countBusinessDays(other, this);
}