package prelude
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
OCaml library hiding stuff from the stdlib
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.4.tar.gz
sha256=858fd4291ea8767c6d238d7c5976107589053157dd4a6d53fa49a0451d7db7ab
sha512=beeacb29c18794854bfdf4d9ca53b24a35e64dbcc07e44fb56087cb14bbb4f8ad21c26eea202b04dd075c4fd84068ae997bd081a51989a6906c47fd58355da5f
doc/README.html
prelude
prelude is an OCaml library hiding some parts of the stdlib.
Installation
prelude can be installed with opam:
opam install preludeIf you don't have opam, you can install it following the how to install opam guide.
If you can't or don't want to use opam, consult the opam file for build instructions.
Quickstart
To add it to your library or executable, you simply need to depend on prelude, you can also pass a flag to the compiler to open it automatically:
(library
(name my_amazing_library)
(modules foo bar)
(flags
(:standard -open Prelude))
(libraries prelude))Prelude is re-exporting some dependencies such as fmt or bos, you should not need to explicitly add them to the libraries field or your dune file.
About
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page