Weekdays
enum Weekdays : Int
This defines a 1-based Gregorian weekday specification. All meetings consider 1 to be Sunday, so the local week start should be converted (see init, below).
-
Sunday
Declaration
Swift
case sunday = 1 -
Monday
Declaration
Swift
case monday -
Tuesday
Declaration
Swift
case tuesday -
Wednesday
Declaration
Swift
case wednesday -
Thursday
Declaration
Swift
case thursday -
Friday
Declaration
Swift
case friday -
Saturday
Declaration
Swift
case saturday
View on GitHub