[#absl-LoadTimeZone] = xref:absl.adoc[absl]::LoadTimeZone :relfileprefix: ../ :mrdocs: Loads the named zone. May perform I/O on the initial load of the named zone. If the name is invalid, or some other kind of error occurs, returns `false` and `*tz` is set to the UTC time zone. == Synopsis Declared in `<absl/time/time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool LoadTimeZone( std::string_view name, xref:absl/TimeZone.adoc[TimeZone]* tz); ---- == Return Value `true` if the zone was loaded successfully. == Parameters [cols="1,4"] |=== | Name| Description | *name* | The TZ identifier of the zone to load. | *tz* | Output parameter receiving the loaded time zone. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#