output_value

Makofka, Doug (dmakofka@gic.gi.com)
Thu, 19 Oct 1995 20:48:00 -0700 (PDT)

Date: Thu, 19 Oct 1995 20:48:00 -0700 (PDT)
From: "Makofka, Doug (HT-MS)" <dmakofka@gic.gi.com>
Subject: output_value
To: Caml-list <caml-list@margaux.inria.fr>

could someone comment on the difference between:
do_list (output_value chan) ProductionLst
and
output_value chan ProductionLst

I guess what I'm looking for is an output_value statement that will allow
me to say:
let rec IterateProductionList = fun chan ->
(match (input_value chan:ProductionValue) with
t -> SomeCrazyFunctionOnProductionValue t;
IterateProductionList chan
| [] -> ())
;;

thanks in advance,
doug makofka
dmakofka@gic.gi.com