mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 03:09:33 -06:00
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 ;
|
|
}
|