src/HOL/Lambda/ListApplication.thy
author paulson
Tue, 23 May 2000 18:06:22 +0200
changeset 8935 548901d05a0e
parent 5261 ce3c25c8a694
child 9102 c7ba07e3bbe8
permissions -rw-r--r--
added type constraint ::nat because 0 is now overloaded

(*  Title:      HOL/Lambda/ListApplication.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1998 TU Muenchen

Application of a term to a list of terms
*)

ListApplication = Lambda + List +

syntax "$$" :: dB => dB list => dB (infixl 150)
translations "t $$ ts" == "foldl op$ t ts"

end