List of Import References : 
See  BOOL 
See  Com 
See  DENOTATION 
See  Nat 
See  Option 
See  Seq 
See  Void 
SIGNATURE ComSeqReduce[from,to]
$Date: 2010-09-30 18:24:17 +0200 (Do, 30. Sep 2010) $ ($Revision: 616 $)
-- command reductions of sequences 
SORT from to
IMPORT  Seq[from]       ONLY    seq
        Com[to]         ONLY    com ans
FUN /  : (from**ans[to]->com[to])**ans[to]**seq[from]->com[to]
        -- c = (gen,a) / s
        -- reduce command generater gen over elements of s
        -- informally:
        -- (gen,a) / <x1,x2,...,xn> = 
        --	gen(x1,a) ; (\\a1. gen(x2,a1) ; (\\a3. ... gen(xn,an-1) ...))
FUN /& : (from**to->com[to])**to**seq[from]->com[to]
        -- informally:
        -- (gen,a) /& <x1,x2,...,xn> = 
        --	gen(x1,a) & (\\a1. gen(x2,a1) & (\\a3. ... gen(xn,an-1) ...))
-- old fashioned style
FUN /  : (from**ans[to]->com[to])**ans[to]->seq[from]->com[to]
FUN /& : (from**to->com[to])**to->seq[from]->com[to]
FUN // : (from**ans[to]->com[to])**seq[from]->ans[to]->com[to]
next node: ComStateWith,
 prev node: ComSeqMap,
 up to node: Subsystem Commands