CourseTableData typedef

CourseTableData = Map<({DayOfWeek day, Period period}), CourseTableCell>

Maps (dayOfWeek, period) grid positions to cell data.

Only the start slot of a multi-period block has an entry; subsequent slots covered by CourseTableCell.span are absent from the map.

Implementation

typedef CourseTableData =
    Map<({DayOfWeek day, Period period}), CourseTableCell>;