package irmin-pack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val toplevel : string -> root:string -> string
module V1_and_v2 : sig ... end
module V3 : sig ... end
val is_number : String.t -> bool

is_number is a less generic than Stdlib.int_of_string_opt. It matches this equivalent regex:

"([1-9][0-9]*|0)"

.

type classification = [
  1. | `Branch
  2. | `Dict
  3. | `Gc_result of int
  4. | `Mapping of int
  5. | `Prefix of int
  6. | `Reachable of int
  7. | `Sorted of int
  8. | `Suffix of int
  9. | `V1_or_v2_pack
]
val classification_t : [ `Branch | `Dict | `Gc_result of int | `Mapping of int | `Prefix of int | `Reachable of int | `Sorted of int | `Suffix of int | `V1_or_v2_pack ] Irmin.Type.t
val classify_filename : string -> classification option