Guest User

Untitled

a guest
Aug 19th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.17 KB | None | 0 0
  1. module Bounded(E: Set.OrderedType) = struct
  2.  
  3.   module SE = Set.Make(E)
  4.  
  5.   type t = {
  6.     bound : int ;
  7.     mutable size : int ;
  8.     mutable data : SE.t;
  9.   }
  10.  
  11. end
Advertisement
Add Comment
Please, Sign In to add comment