src/Pure/Concurrent/par_list_dummy.ML
author boehmes
Mon, 21 Sep 2009 13:42:36 +0200
changeset 32626 a45e8ec2b51e
parent 29368 503ce3f8f092
permissions -rw-r--r--
deleted unused file

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

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

structure Par_List: PAR_LIST =
struct

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

end;