package ocp-index

  1. Overview
  2. Docs
Lightweight completion and documentation browsing for OCaml libraries

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocp-index-1.4.1.tbz
sha256=59adbd99a9c88106dcf23bc0e3424a00f840fcedee4e4b644eaf0385ada3f911
sha512=53c9b83ee7c274bf1981de716081e4d7f603d2d4cc25c83a20d2f4c599d88d2200393feef54f4cdb25e014ea058d498ac711581c40e298df30f33a7cf8f65ff6

doc/ocp-index.lib/IndexMisc/index.html

Module IndexMiscSource

Sourceval debug_enabled : bool
Sourceval debug : ('a, out_channel, unit) format -> 'a
Sourceval timer : unit -> unit -> float
Sourceval foldl_next : ('acc -> 'a -> 'a option -> 'acc) -> 'acc -> 'a list -> 'acc

Similar to List.fold_left but with 1 step look-ahead

Sourceval string_split : char -> string -> string list
Sourcetype key = char list
Sourceval dot : char
Sourceval dots : string
Sourceval string_to_key : string -> key

Used to get the keys (or paths) in the trie

Sourceval key_to_string : key -> string
Sourceval modpath_to_key : ?enddot:bool -> string list -> key
Sourceval key_to_modpath : key -> string list
Sourceval modpath_to_string : string list -> string
Sourceval parent_type : IndexTypes.info -> IndexTypes.info option

Returns the parent type for field records, variants and methods

Sourceval unique_subdirs : ?skip:(string -> bool) -> string list -> string list
Sourceval project_root : ?path:string -> unit -> string option * string option
Sourceval find_build_dir : string -> string option
Sourceval make_relative : ?path:string -> string -> string

Shorten file by making it relative to current path (default cwd)

Sourceval file_extension : string -> string

Returns whatever is after the last '.' in the string, "" otherwise.