package search

  1. Overview
  2. Docs

Unique Identifiers

module type Uid = sig ... end

Search Index Implementations

Term Frequency Inverse Document Frequency

This search index uses the tf-idf approach to searching.

module Tfidf : sig ... end

Useful UID implementations

val create_uid : to_string:('uid -> string) -> cmp:('uid -> 'uid -> int) -> (module Uid with type t = 'uid)

create_uid ~to_string ~cmp allows you to create a Uid module from the provided functions.

module Uids : sig ... end
module Private : sig ... end
OCaml

Innovation. Community. Security.