package prbnmcn-basic-structures
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Base package for prbnmcn-* packages
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.0.1.tar.gz
md5=f169865416fdd1804beace6daeba2cb9
sha512=8a78c0572866e6471f8123d702aee42e6abdef6b0b633ab0ea678382a26194a1d79dea9d44ea0cb7b45d77dac25a6706153c3074f7b0aad05ce744fb480d8518
doc/src/prbnmcn-basic-structures/basic_intf.ml.html
Source file basic_intf.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41include Intf_std include Intf_algebra include Intf_monad include Intf_infix module Lang = Intf_lang (** Metric space *) module type Metric = sig include Std (** [dist] is expected to be a proper distance function (symmetric, zero on the diagonal, verifying the triangular inequality). *) val dist : t -> t -> float end (** Module type of anything that looks like the (measured) reals. *) module type Reals = sig include Field_std (** Lebesgue on the interval [0;1] *) val lebesgue : Random.State.t -> t val ( + ) : t -> t -> t val ( - ) : t -> t -> t val ( * ) : t -> t -> t val ( / ) : t -> t -> t include Infix_order with type t := t and type 'a m := 'a (** [npow x n] is [x] tp the power of [n]. *) val npow : t -> int -> t val to_float : t -> float val of_float : float -> t val of_int : int -> t end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>