Module type Kwregexp.RegexpType

module type RegexpType = sig .. end
The signature of the input structure to Make.

This signature is readily matched by Pcre.


type regexp 
type irflag 
type rflag 
type callout 
type split_result = 
| Text of string
| Delim of string
| Group of int * string
| NoGroup
val full_split : ?iflags:irflag ->
?flags:rflag list ->
?rex:regexp ->
?pat:string ->
?pos:int ->
?max:int ->
?callout:callout ->
string -> split_result list