package core
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Industrial strength alternative to OCaml's standard library
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.14.1.tar.gz
sha256=8c158c12345d36a5cdd71081728f4317b2b04c09eb4126b6de00c482a6fec2a0
md5=b11f58205953d84cedb0003efcdab231
doc/core.linux_ext/Linux_ext/Timerfd/index.html
Module Linux_ext.Timerfd
module Clock : sig ... endClock used to mark the progress of a timer.
module Flags : sig ... endtype t = private Core.Unix.File_descr.tval sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.tval to_file_descr : t -> Core.Unix.File_descr.tcreate ?flags clock creates a new timer file descriptor. With Linux 2.6.26 or earlier, flags must be empty.
val set_at : t -> Core.Time_ns.t -> unitset_at t at and set_after t span set t to fire once, at at or after span. set_after treats span <= 0 as span = 1ns; unlike the underlying system call, timerfd_settime, it does not clear the timer if span = 0. To clear a timerfd, use Timerfd.clear.
set_repeating ?after t interval sets t to fire every interval starting after after (default is interval), raising if interval <= 0.
val set_after : t -> Core.Time_ns.Span.t -> unitval set_repeating :
?after:Core.Time_ns.Span.t ->
t ->
Core.Time_ns.Span.t ->
unitval clear : t -> unitclear t causes t to not fire anymore.
val get :
t ->
[ `Not_armed | `Fire_after of Core.Time_ns.Span.t | `Repeat of repeat ]get t returns the current state of the timer t.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>