forked from GitHub/gf-core
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
abstract Bind = {
|
|
cat S ;
|
|
fun
|
|
f1 : S ;
|
|
f2 : S ;
|
|
concat : S -> S -> S ;
|
|
bind : S -> S -> S ;
|
|
softbind : S -> S -> S ;
|
|
softspace : S -> S -> S ;
|
|
capit : S -> S ;
|
|
allcapit : S -> S ;
|
|
prebind : S -> S ;
|
|
precapit : S -> S ;
|
|
}
|