sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
val create :
min:int ->
count:int ->
t Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
create ~min ~count
creates a full slot range starting at min
, of size count
, i.e, min, min + count - 1
.
create
errors if
min < 0
count < 1
min + count - 1 > max_value
fold f acc range
folds f
over the values of range
, in increasing order.
val fold_es :
('a ->
slot ->
'a Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.t) ->
'a ->
t ->
'a Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.t
fold_es f acc range
folds f
over the values of range
, in increasing order.
val rev_fold_es :
('a ->
slot ->
'a Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.t) ->
'a ->
t ->
'a Tezos_protocol_environment_016_PtMumbai.Error_monad.tzresult
Tezos_protocol_environment_016_PtMumbai.Lwt.t
rev_fold_es f acc range
folds f
over the values of range
, in decreasing order.