OSDN Git Service

Add .ocamlinit.
[happyabc/happyabc.git] / swflib / tagIn.mli
1 module type Abc = sig
2   type t
3   val read : int Stream.t -> t
4 end
5
6 module Make: functor (Abc : Abc) -> sig
7   type t = Abc.t TagType.t
8   val read : int -> int Stream.t -> t
9 end
10
11