sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
The implementation of read effects.
Signatures of read effects.
val read : unit -> env
Read the environment.
scope f t
runs the thunk t
under the new environment that is the result of applying f
to the current environment.
val run : env:env -> (unit -> 'a) -> 'a
run t
runs the thunk t
which may perform reading effects.