sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Create a new comparator by providing a module which satisifies T
.
module Book = struct
module T = struct
type t = {
isbn: string;
title: string;
}
let compare bookA bookB =
String.compare bookA.isbn bookB.isbn
end
include T
include Comparator.Make(T)
end
let books = Set.empty (module Book)
The output type of Make
and make
.
module Comparable : T
val comparator : (Comparable.t, identity) comparator