Module Polars.Tz

type t

Tz.t represents the time zone type used by polars. Since the underlyingx type is statically generated at compile-time, it is not guaranteed to always match tz values which are dynamically queries from the tz database at runtime.

The underlying Rust type is chrono_tz::Tz (https://docs.rs/chrono-tz/latest/chrono_tz/)

include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
include Ppx_quickcheck_runtime.Quickcheckable.S with type t := t
val quickcheck_generator : t Base_quickcheck.Generator.t
val quickcheck_observer : t Base_quickcheck.Observer.t
val quickcheck_shrinker : t Base_quickcheck.Shrinker.t
val all : unit -> t list
val to_string : t -> string
val parse : string -> t option
val of_time_zone : Time_ns_unix.Zone.t -> t option
val to_time_zone : t -> Time_ns_unix.Zone.t option
val pp : Stdlib.Format.formatter -> t -> unit