Guest User

Untitled

a guest
Nov 11th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.21 KB | None | 0 0
  1. module type X = sig
  2.  
  3. type t
  4.  
  5. val some_function : t -> t -> t
  6.  
  7. end
  8.  
  9. module Make:
  10.   functor (ST : Set.S) ->
  11.   sig
  12.     include X with type t = ST.t X.t
  13.     val another_function : ST.t -> ST.t -> t
  14.   end
Advertisement
Add Comment
Please, Sign In to add comment