Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. How do I specify that I want xxx to be HM.t ?
  2.  
  3. ##############################
  4. # scanner.mli
  5.  
  6. type my_header =
  7. {
  8. ...
  9. }
  10.  
  11. val get_leaves : my_header xxx -> string list
  12.  
  13. #################################
  14. # scanner.ml
  15.  
  16. module HM = Map.Make(String)
  17.  
  18. (* val get_leaves : my_header HM.t -> string list *)
  19. let get_leaves headers =
  20. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement