Tezos_raw_protocol_023_PtSeouLo.Slot_repr
Slot 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 = t
val encoding : t Tezos_protocol_environment_023_PtSeouLo.Data_encoding.t
val zero : t
val max_value : t
Upper bound on the value a slot index can take
val of_int :
int ->
t Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresult
of_int i
creates a slot index from integer i
.
val succ : t -> t Tezos_protocol_environment_023_PtSeouLo.Error_monad.tzresult
succ n
either returns an Invalid_slot
error if n
is max_value
or ok
value
otherwise.
val to_int : t -> int
to_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 -> unit
module Map : Tezos_protocol_environment_023_PtSeouLo.Map.S with type key = t
module Set : Tezos_protocol_environment_023_PtSeouLo.Set.S with type elt = t
include Tezos_protocol_environment_023_PtSeouLo.Compare.S with type t := t
module Range : sig ... end