func (sel Selector) Name() string { return C.GoString(C.sel_getName(sel.csel())) }
func (mthd Method) Name() string { return C.GoString(C.sel_getName(C.method_getName(mthd.cmethod()))) }
func Runtime_sel_getName(sel unsafe.Pointer) string { return C.GoString(C.sel_getName((*C.struct_objc_selector)(sel))) }