Tezos_raw_protocol_023_PtSeouLo.Slot_reprSlot index representation
A slot index is in essence a bounded whole number. That is, it is not allowed to overflow max_value, nor does it wrap when calling succ max_value. In this case it returns an Invalid_slot error.
type slot = tval encoding : t Tezos_protocol_environment_023_PtSeouLo.Data_encoding.tval zero : tval max_value : tUpper bound on the value a slot index can take
val of_int : 
  int ->
  t Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresultof_int i creates a slot index from integer i.
val succ : t -> t Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresultsucc n either returns an Invalid_slot error if n is max_value or ok value otherwise.
val to_int : t -> intto_int slot returns the integral representation of a slot index. This value is always a whole number.
val pp : Tezos_protocol_environment_023_PtSeouLo.Format.formatter -> t -> unitmodule Map : Tezos_protocol_environment_023_PtSeouLo.Map.S with type key = tmodule Set : Tezos_protocol_environment_023_PtSeouLo.Set.S with type elt = tinclude Tezos_protocol_environment_023_PtSeouLo.Compare.S with type t := tmodule Range : sig ... end