julia> using TimeZones
julia> @time ZonedDateTime(2025, 7, 18, 22, 5, tz"Europe/Berlin")
0.000002 seconds
2025-07-18T22:05:00+02:00
julia> @time ZonedDateTime(2025, 7, 18, 22, 5, tz"Europe/Berlin", 1)
0.000002 seconds
2025-07-18T22:05:00+02:00
julia> @time ZonedDateTime(2025, 7, 18, 22, 5, tz"Europe/Berlin", true)
0.000001 seconds (1 allocation: 48 bytes)
2025-07-18T22:05:00+02:00
The last method allocates memory. It'd be nice to remove the memory allocation, since the other ones don't have it