isWeekend method

bool isWeekend(
  1. Weekday day
)

See the Rust documentation for weekend for more information.

See the Rust documentation for contains for more information.

Implementation

bool isWeekend(Weekday day) {
  final result = _icu4x_WeekInformation_is_weekend_mv1(_ffi, day._ffi);
  return result;
}