This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
signature OBJECT = | |
sig | |
type 'a tag | |
type t | |
val new : unit -> t list tag | |
and make : 'a tag -> 'a -> t | |
val get : t -> 'a tag -> 'a | |
(* primitives *) |