package functoria-runtime
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Arg
defines command-line arguments which can be set at runtime. This module is the runtime companion of Functoria.Key
. It exposes a subset of Cmdliner.Arg.
Runtime command-line arguments
The type for runtime command-line arguments. Similar to Functoria.Key.Arg.t
but only available at runtime.
val opt : 'a Cmdliner.Arg.conv -> 'a -> Cmdliner.Arg.info -> 'a t
opt
is the runtime companion of Functoria.Ky.Arg.opt
.
val opt_all : 'a Cmdliner.Arg.conv -> 'a list -> Cmdliner.Arg.info -> 'a list t
opt_all
is the runtime companion of Functoria.Key.Arg.opt_all
.
val required : 'a Cmdliner.Arg.conv -> Cmdliner.Arg.info -> 'a t
required
is the runtime companion of Functoria.Key.Arg.required
.
val key : ?default:'a -> 'a Cmdliner.Arg.conv -> Cmdliner.Arg.info -> 'a t
val flag : Cmdliner.Arg.info -> bool t
flag
is the runtime companion of Functoria.Key.Arg.flag
.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page