package lrgrep

  1. Overview
  2. Docs
Analyse the stack of a Menhir-generated LR parser using regular expressions

Install

dune-project
 Dependency

Authors

Maintainers

Sources

lrgrep-0.3.tbz
sha256=84a1874d0c063da371e19c84243aac7c40bfcb9aaf204251e0eb0d1f077f2cde
sha512=5a16ff42a196fd741bc64a1bdd45b4dca0098633e73aa665829a44625ec15382891c3643fa210dbe3704336eab095d4024e093e37ae5313810f6754de6119d55

doc/utils/Utils/IndexTable/index.html

Module Utils.IndexTableSource

Sourcemodule type S = sig ... end
include S with type 'n index := 'n Fix.Indexing.index
type ('n, !'a) t
val create : int -> ('n, 'a) t
val clear : ('n, 'a) t -> unit
val reset : ('n, 'a) t -> unit
val copy : ('n, 'a) t -> ('n, 'a) t
val add : ('n, 'a) t -> 'n Fix.Indexing.index -> 'a -> unit
val remove : ('n, 'a) t -> 'n Fix.Indexing.index -> unit
val find : ('n, 'a) t -> 'n Fix.Indexing.index -> 'a
val find_opt : ('n, 'a) t -> 'n Fix.Indexing.index -> 'a option
val find_all : ('n, 'a) t -> 'n Fix.Indexing.index -> 'a list
val replace : ('n, 'a) t -> 'n Fix.Indexing.index -> 'a -> unit
val mem : ('n, 'a) t -> 'n Fix.Indexing.index -> bool
val iter : ('n Fix.Indexing.index -> 'a -> unit) -> ('n, 'a) t -> unit
val filter_map_inplace : ('n Fix.Indexing.index -> 'a -> 'a option) -> ('n, 'a) t -> unit
val fold : ('n Fix.Indexing.index -> 'a -> 'b -> 'b) -> ('n, 'a) t -> 'b -> 'b
val length : ('n, 'a) t -> int
val stats : ('n, 'a) t -> Stdlib.Hashtbl.statistics
val to_seq : ('n, 'a) t -> ('n Fix.Indexing.index * 'a) Stdlib.Seq.t
val to_seq_keys : (_, _) t -> 'n Fix.Indexing.index Stdlib.Seq.t
val to_seq_values : ('n, 'a) t -> 'a Stdlib.Seq.t
val add_seq : ('n, 'a) t -> ('n Fix.Indexing.index * 'a) Stdlib.Seq.t -> unit
val replace_seq : ('n, 'a) t -> ('n Fix.Indexing.index * 'a) Stdlib.Seq.t -> unit
val of_seq : ('n Fix.Indexing.index * 'a) Stdlib.Seq.t -> ('n, 'a) t