| 564 | constexpr char RoundBinaryOptions::kTypeName[]; |
| 565 | |
| 566 | RoundTemporalOptions::RoundTemporalOptions(int multiple, CalendarUnit unit, |
| 567 | bool week_starts_monday, |
| 568 | bool ceil_is_strictly_greater, |
| 569 | bool calendar_based_origin) |
| 570 | : FunctionOptions(internal::kRoundTemporalOptionsType), |
| 571 | multiple(std::move(multiple)), |
| 572 | unit(unit), |
| 573 | week_starts_monday(week_starts_monday), |
| 574 | ceil_is_strictly_greater(ceil_is_strictly_greater), |
| 575 | calendar_based_origin(calendar_based_origin) {} |
| 576 | constexpr char RoundTemporalOptions::kTypeName[]; |
| 577 | |
| 578 | RoundToMultipleOptions::RoundToMultipleOptions(double multiple, RoundMode round_mode) |
no outgoing calls