package splay_tree

  1. Overview
  2. Docs
type nonrec t = {
  1. lt : t;
  2. mid : t;
  3. gt : t;
}