module type S = sig
.. end
Polymorphic variants are provided for concision at client call sites. *
type
t = [ `Case_sensitive of bool
| `Encoding_latin1 of bool
| `Literal of bool
| `Log_errors of bool
| `Longest_match of bool
| `Max_mem of int
| `Never_nl of bool
| `One_line of bool
| `Perl_classes of bool
| `Posix_syntax of bool
| `Word_boundary of bool ]
these options are exactly as defined by Google with two exceptions:
- Encoding_latin1 means Latin1 if true and UTF if false
- Log_errors is false by default (so
noisy
is provided instead of quiet)
*
val latin1 : t list
val posix : t list
val noisy : t list