package dataframe

  1. Overview
  2. Docs
module type Elt = sig ... end
module type S = sig ... end
type ('a, 'b) t = (module S with type t = 'b and type Elt.t = 'a)
type packed =
  1. | P : (_, _) t -> packed