src/Pure/Concurrent/par_list_dummy.ML
author wenzelm
Sat, 13 Dec 2008 15:00:39 +0100
changeset 29091 b81fe045e799
parent 28556 85d2972fe9e6
child 29368 503ce3f8f092
permissions -rw-r--r--
Context.display_names;

(*  Title:      Pure/Concurrent/par_list_dummy.ML
    ID:         $Id$
    Author:     Makarius

Dummy version of parallel list combinators -- plain sequential evaluation.
*)

structure ParList: PAR_LIST =
struct

val map = map;
val get_some = get_first;
val find_some = find_first;
val exists = exists;
val forall = forall;

end;