package plebeia

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Path : sig ... end
type name = Name.t
module Map : sig ... end
type model_tree = Simulation(Name).model_tree =
  1. | File of Plebeia.Value.t
  2. | Dir of model_tree Map.t
type raw_cursor = Simulation(Name).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
type error =
  1. | Is_file of string * Path.t
  2. | Is_directory of string * Path.t
  3. | No_such_file_or_directory of string * Path.t
  4. | File_or_directory_exists of string * Path.t
  5. | Path_decode_failure of Plebeia.Segment.t
  6. | Other of string * string
type Plebeia.Error.t +=
  1. | FS_error of error
module Context : sig ... end
val empty : 'a -> raw_cursor
val make : 'a -> 'b -> 'c
val error_fs : error -> ('a, Plebeia.Error.t) result
module Op : sig ... end
module Op_lwt : sig ... end