mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-18 01:09:32 -06:00
13 lines
218 B
Plaintext
13 lines
218 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 ;
|
|
}
|