src/HOLCF/Stream2.thy
author lcp
Wed, 17 Aug 1994 10:33:23 +0200
changeset 538 b4fe3da03449
parent 297 5ef75ff3baeb
child 1168 74be52691d62
permissions -rw-r--r--
ZF/func/fun_extend3: new ZF/func/cons_fun_eq: simplified proof

(*  Title: 	HOLCF/stream2.thy
    ID:         $Id$
    Author: 	Franz Regensburger
    Copyright   1993 Technische Universitaet Muenchen

Additional constants for stream
*)

Stream2 = Stream +

consts

smap		:: "('a -> 'b) -> 'a stream -> 'b stream"

rules

smap_def
  "smap = fix[LAM h f s. stream_when[LAM x l.scons[f[x]][h[f][l]]][s]]"


end
      

(*
		smap[f][UU] = UU
      x~=UU --> smap[f][scons[x][xs]] = scons[f[x]][smap[f][xs]]

*)