forked from GitHub/gf-core
10 lines
143 B
Plaintext
10 lines
143 B
Plaintext
abstract Bind = {
|
|
cat S ;
|
|
fun
|
|
f1 : S ;
|
|
f2 : S ;
|
|
concat : S -> S -> S ;
|
|
bind : S -> S -> S ;
|
|
softbind : S -> S -> S ;
|
|
}
|