blob: bcc4af294f61fa3e503e3f20ebd990fc01f9a696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
type 'a voyel = ('a * 'a)
type 'a consonants =
{ ending : 'a option option
; opening : 'a list
; following : 'a option }
type 'a group = 'a voyel * 'a consonants option
type 'a t = 'a group * 'a option option
type 'a modifier = 'a t -> 'a t
|