Tezos_raw_protocol_019_PtParisB.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_019_PtParisB.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_019_PtParisB.Error_monad.tzresultof_int i creates a slot index from integer i.
val of_int_do_not_use_except_for_parameters : int -> tof_int_do_not_use_except_for_parameters i is an unchecked construction function.
It may be used in cases where one knows 0 <= i <= max_value, e.g., when creating protocol parameters.
When in doubt, use of_int or of_int_exn.
val succ : t -> t Tezos_protocol_environment_019_PtParisB.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_019_PtParisB.Format.formatter -> t -> unitmodule Map : Tezos_protocol_environment_019_PtParisB.Map.S with type key = tmodule Set : Tezos_protocol_environment_019_PtParisB.Set.S with type elt = tinclude Tezos_protocol_environment_019_PtParisB.Compare.S with type t := tmodule Range : sig ... endmodule Internal_for_tests : sig ... end