Module Generic_core_desc.Method

module Method: sig .. end
Generic representation of an object's or a classe's method.

type ('a, 'c) desc = {
   name : string;
   send : 'c -> 'a;
   bound : int;
   ty : 'a Ty.T.ty;
}
type 'c t = 
| Method : ('a, 'c0) desc -> 'c0 t