Up

Module Path

Signature

module Rel : sig .. end
module Abs : sig .. end
type t
val __bin_read_t__ : (int -> t) Core.Std.Bin_prot.Read.reader
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val hash : t -> int
module Table : sig .. end
module Hash_set : sig .. end
module Hash_queue : sig .. end
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val equal : t -> t -> bool
val compare : t -> t -> int
val min : t -> t -> t
val max : t -> t -> t
val ascending : t -> t -> int
val descending : t -> t -> int
val between : t -> low:t -> high:t -> bool
val clamp_exn : t -> min:t -> max:t -> t
val clamp : t -> min:t -> max:t -> t Core_kernel.Or_error.t
module Replace_polymorphic_compare : sig .. end
type comparator_witness
module Map : sig .. end
module Set : sig .. end
val of_relative : Rel.t -> t
val of_absolute : Abs.t -> t
val case : t -> [
| `absolute of Abs.t
| `relative of Rel.t
]
val is_absolute : t -> bool
val the_root : t
val unix_root : t
val root_relative : string -> t
val absolute : string -> t
val relative : dir:t -> string -> t
val dirname : t -> t
val basename : t -> string
val to_string : t -> string
val reach_from : dir:t -> t -> string
val is_descendant : dir:t -> t -> bool
val relative_or_absolute : dir:t -> string -> t
module Repo : sig .. end
val to_absolute_string : t -> string
val of_absolute_string : string -> t
val is_a_root : t -> bool
module With_store : sig .. end