Module Stable_matching.Item

module Item: sig .. end

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