Guest User

Untitled

a guest
Oct 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.31 KB | None | 0 0
  1. (* priority-sig.sml
  2.  *
  3.  * COPYRIGHT (c) 2002 Bell Labs, Lucent Technologies
  4.  *
  5.  * Argument signature for functors that implement priority queues.
  6.  *)
  7.  
  8. signature PRIORITY =
  9.   sig
  10.     type priority
  11.     val compare : (priority * priority) -> order
  12.     type item
  13.     val priority : item -> priority
  14.   end;
Add Comment
Please, Sign In to add comment