package daypack-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type time_pattern = {
  1. years : int list;
  2. months : Time.month list;
  3. month_days : int list;
  4. weekdays : Time.weekday list;
  5. hours : int list;
  6. minutes : int list;
  7. seconds : int list;
  8. unix_seconds : int64 list;
}
type time_pattern_error =
  1. | Invalid_years of int list
  2. | Invalid_month_days of int list
  3. | Invalid_hours of int list
  4. | Invalid_minutes of int list
  5. | Invalid_seconds of int list
  6. | Invalid_unix_seconds of int64 list
type error =
  1. | Invalid_search_param of Search_param.error
  2. | Invalid_time_pattern of time_pattern_error
type time_range_pattern = time_pattern Range.range
val empty : time_pattern
module Check : sig ... end
module Single_pattern : sig ... end
module Range_pattern : sig ... end
module Equal : sig ... end
module Parsers : sig ... end
module Of_string : sig ... end
module To_string : sig ... end
module Print : sig ... end
module Serialize : sig ... end
module Deserialize : sig ... end