package daypack-lib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file time_pattern_t.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* Auto-generated from "time_pattern.atd" *)
[@@@ocaml.warning "-27-32-33-35-39"]

type weekday = Time_t.weekday

type month = Time_t.month

type int64 = Int64_t.int64

type time_pattern = {
  years: int list;
  months: month list;
  weekdays: weekday list;
  month_days: int list;
  hours: int list;
  minutes: int list;
  seconds: int list;
  unix_seconds: int64 list
}

type days = [ `Weekdays of weekday list | `Month_days of int list ]