src/HOL/Lambda/ListApplication.thy
author wenzelm
Wed, 02 Aug 2000 19:40:14 +0200
changeset 9502 50ec59aff389
parent 9102 c7ba07e3bbe8
child 9771 54c6a2c6e569
permissions -rw-r--r--
adapted deriv;

(*  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 +

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

end