package plebeia

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Parameters

Signature

module Name = Base.Name
module Path = Base.Path
type name = Name.t
module Map : sig ... end
type model_tree =
  1. | File of Plebeia.Value.t
  2. | Dir of model_tree Map.t
type raw_cursor =
  1. | Z of model_tree * (name * model_tree Map.t) list
type cursor = raw_cursor
type view = model_tree
type hash = string
val pp_model_tree_map : Format.formatter -> model_tree Map.t -> unit
val pp_view : Format.formatter -> model_tree -> unit
val pp_trail : Format.formatter -> (Name.t * model_tree Map.t) list -> unit
val pp_cursor : Format.formatter -> raw_cursor -> unit
include sig ... end
type path = Path.t
type t =
  1. | Is_file of string * path
  2. | Is_directory of string * path
  3. | No_such_file_or_directory of string * path
  4. | File_or_directory_exists of string * path
  5. | Path_decode_failure of Plebeia.Segment.t
  6. | Other of string * string
type Plebeia.Error.t +=
  1. | FS_error of t
val error : t -> ('a, Plebeia.Error.t) result
module Context : sig ... end
val empty : 'a -> raw_cursor
val make : 'a -> 'b -> 'c
val error_fs : t -> ('a, Plebeia.Error.t) result
module Op : sig ... end
module Op_lwt : sig ... end