package irmin
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
package irmin
-
irmin
-
-
irmin_mem
-
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
User-defined branches.
Branches
module type S = sig ... end
The signature for branches. Irmin branches are similar to Git branches: they are used to associated user-defined names to head commits. Branches have a default value: the master branch.
String
is an implementation of S where branches are strings. The master
branch is "master"
. Valid branch names contain only alpha-numeric characters, -
, _
, .
, and /
.
module type STORE = sig ... end
STORE
specifies the signature for branch stores.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page