WhoCites
Definitions
mb
structures
Sections
GenAutomata
Doc
Who Cites compose
map?
compose_map
Def P o evt(L) == P(map(evt;L))
Thm*
A,B:Type{i}, f:(A
B), C:Type{i'}, P:((B List)
C). P o f
(A List)
C
map
Def
map(f;as) == Case of as; nil
nil ; a.as'
[(f(a)) / map(f;as')] (recursive)
Thm*
A,B:Type, f:(A
B), l:A List. map(f;l)
B List
Thm*
A,B:Type, f:(A
B), l:A List
. map(f;l)
B List
Syntax:
P o evt
has structure:
compose_map(P; evt)
About:
WhoCites
Definitions
mb
structures
Sections
GenAutomata
Doc