sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
This functor lets you describe the type of Maps a little more concisely.
let stringToInt : int Map.Of(String).t =
Map.fromList (module String) [("Apple", 2); ("Pear", 0)]
Is the same as
let stringToInt : (string, int, String.identity) Map.t =
Map.fromList (module String) [("Apple", 2); ("Pear", 0)]
module M : sig ... end
type nonrec 'value t = (M.t, 'value, M.identity) t