Module Stable_matching.Item

type ('v, 'k) t = {
  1. name : string;
  2. item : 'v;
  3. kind : 'k;
}
val item : ('v, 'k) t -> 'v