Skip to content

Instantly share code, notes, and snippets.

@khigia
Created July 22, 2008 06:10
Show Gist options
  • Save khigia/673 to your computer and use it in GitHub Desktop.
Save khigia/673 to your computer and use it in GitHub Desktop.
Ocaml ternary search tree type
type 'a tst_t =
| E
| N of 'a tst_t * 'a tst_t * 'a tst_t * char * 'a option
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment