Guest User

Untitled

a guest
Oct 26th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.17 KB | None | 0 0
  1. Polymorphic finite partial functions via Patricia trees.  
  2. type ('a,'b)func =
  3.    Empty
  4.  | Leaf of int * ('a*'b)list
  5.  | Branch of int * int * ('a,'b)func * ('a,'b)func;;
Add Comment
Please, Sign In to add comment