package path_glob

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Parse_error of string
type pattern =
  1. | Epsilon
  2. | Star of pattern
  3. | Class of character_class
  4. | Concat of pattern * pattern
  5. | Union of pattern list
  6. | Word of string
and character_class = (char * char) Formula.t
type 'pattern atom =
  1. | Constant of string
  2. | Pattern of 'pattern