Tezos_raw_protocol_023_PtSeouLo.Time_reprinclude module type of struct include Tezos_protocol_environment_023_PtSeouLo.Time endval of_seconds : int64 -> tval to_seconds : t -> int64val of_notation : string -> t optionval of_notation_exn : string -> tval to_notation : t -> stringval encoding : t Tezos_protocol_environment_023_PtSeouLo.Data_encoding.tval rfc_encoding : t Tezos_protocol_environment_023_PtSeouLo.Data_encoding.tval pp_hum : 
  Tezos_protocol_environment_023_PtSeouLo.Format.formatter ->
  t ->
  unittype time = tInternal timestamp representation.
val pp : Tezos_protocol_environment_023_PtSeouLo.Format.formatter -> t -> unitPretty-prints the time stamp using RFC3339 format.
val of_seconds_string : string -> time optionParses RFC3339 representation and returns a timestamp.
val to_seconds_string : time -> stringReturns the timestamp encoded in RFC3339 format.
val (+?) : 
  time ->
  Period_repr.t ->
  time Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresultAdds a time span to a timestamp. This function fails on integer overflow
val (-?) : 
  time ->
  time ->
  Period_repr.t Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresultReturns the difference between two timestamps as a time span. This function fails when the difference is negative
val (-) : time -> Period_repr.t -> timet - p Returns a timestamps p seconds before t.
TODO: https://gitlab.com/tezos/tezos/-/issues/2054 This function should be made available in the environment.