| 1 | # zig-time |
| 2 | |
| 3 |  |
| 4 | [](https://github.com/nektro/zig-time/blob/master/LICENSE) |
| 5 | [](https://github.com/sponsors/nektro) |
| 6 | [](https://ziglang.org/) |
| 7 | [](https://github.com/nektro/zigmod) |
| 8 | |
| 9 | Exposes a `DateTime` structure that can be initialized and acted upon using various methods. All public methods return a new structure. |
| 10 | |
| 11 | Currently handles dates and times based on the [Proleptic Gregorian calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar) in adherence to [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601). |
| 12 | |
| 13 | Does not handle leap seconds. |
| 14 | |
| 15 | See the `FormatSeq` structure for display information on what to pass as a `fmt` string. |