Up

module Date

: sig
#
type t = Date0.t
include module type of Date0 with type t := t
#
val of_time : Time.t -> zone:Zone.t -> t
#
val today : zone:Zone.t -> t
#
val format : t -> string -> string

This formats a date using the format patterns available in strftime. Uses machine timezone where applicable.

end