static abstract class IMatchF { abstract bool get(O pat, O real, IMatchF elementMatcher, Map map); bool get(O pat, O real, Map map) { ret get(pat, real, null, map); } }