| 529 | static constexpr const char kTypeName[] = "WeekOptions"; |
| 530 | static WeekOptions Defaults() { return WeekOptions{}; } |
| 531 | static WeekOptions ISODefaults() { |
| 532 | return WeekOptions{/*week_starts_monday*/ true, |
| 533 | /*count_from_zero=*/false, |
| 534 | /*first_week_is_fully_in_year=*/false}; |
| 535 | } |
| 536 | static WeekOptions USDefaults() { |
| 537 | return WeekOptions{/*week_starts_monday*/ false, |
| 538 | /*count_from_zero=*/false, |
no outgoing calls
no test coverage detected