Module Posix_time2.Tm
type t= private{tm_sec : int;tm_min : int;tm_hour : int;tm_mday : int;tm_mon : int;tm_year : int;tm_wday : int;tm_yday : int;tm_isdst : int;}POSIX tm value with seconds
0,61, minutes0,59, hours0,23, day of month0,31, month of year0,11, years since 1900, day of week0,6(Sunday = 0), day of year0,365and daylight saving flag. The daylight saving flag is positive if daylight saving is in effect and 0 if not. In case this information is not available, it has a negative value.
val create : int -> int -> int -> int -> int -> int -> int -> int -> int -> t optioncreate tm_sec tm_min tm_hour tm_mday rm_mon tm_year tm_wday tm_yday tm_isdstcreates a new time value if the all arguments suffice the aforementioned predicates. Otherwisecreatewill returnNone.