Module Search_pattern.Private

type public = t
type t = {
  1. pattern : string;
  2. case_sensitive : bool;
  3. kmp_array : int array;
}
val equal : t -> t -> bool
val sexp_of_t : t -> Sexplib0.Sexp.t
val representation : public -> t