package path_glob

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

A lexer function for globbing formulas.

To parse globbing formulas you should rather use thePath_glob.Glob.parse function.

The lexer provides a lower-level access that might be combined with other lexers in a larger grammar.

type token =
  1. | ATOM of Ast.pattern Ast.atom
  2. | AND
  3. | OR
  4. | NOT
  5. | LPAR
  6. | RPAR
  7. | TRUE
  8. | FALSE
  9. | EOF
val token : Lexing.lexbuf -> token