Converts an exploded structure representing either the local time or UTC into a Time class.
| 381 | // Converts an exploded structure representing either the local time or UTC |
| 382 | // into a Time class. |
| 383 | static Time FromUTCExploded(const Exploded& exploded) { |
| 384 | return FromExploded(false, exploded); |
| 385 | } |
| 386 | static Time FromLocalExploded(const Exploded& exploded) { |
| 387 | return FromExploded(true, exploded); |
| 388 | } |