operator == 抽象方法

bool operator ==(
  1. Object other
)
override

判断 other 是否是与此镜相同类型变量的 TypeVariableMirror

等价条件为

  1. other 是相同类型的镜,并且
  2. simpleName == other.simpleName 以及 owner == other.owner

实现

bool operator ==(Object other);