package camomile

  1. Overview
  2. Docs
A Unicode library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

camomile-1.0.1.tbz
sha256=c23b0a39cb36fd130168d3eba7cb4a91fbd35982b6cb2320ce5b06f271965a07
md5=82e016653431353a07f22c259adc6e05

doc/src/camomile.library/uReStrParserType.ml.html

Source file uReStrParserType.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 1 "Camomile/internal/uReStrParserType.ml"
type set_notation =
  [ `Set of USet.t
  | `Property of string
  | `Intr of set_notation * set_notation
  | `Union of set_notation * set_notation
  | `Diff of set_notation * set_notation
  | `Compl of set_notation ]

type tree =
  [ `Alt of tree * tree
  | `Seq of tree * tree
  | `Rep of tree
  | `Repn of tree * int * int option
  | `After of tree
  | `Before of tree
  | `Epsilon
  | `Group of tree
  | `OneChar
  | `String of UChar.t list
  | `Set of USet.t
  | `SetNotation of set_notation
  | `BoS
  | `EoS ]