(has-met? receiver name)
  receiver: an obj, a class, or an rdata
  name: a sym
  returns a bool
F

Returns #t if the given name is bound to a method.

In other words, if (has-met? rcv name) returns #t, then it would be possible to invoke a method using (call-met name rcv ...).

call-met
is?