nitc :: NameComparator :: defaultinit
# Compare two matches by their name in lexicographic order # # Generally, for a same score, we want to put A before Z. class NameComparator super ScoreComparator redef fun compare(o1, o2) do return o1.mentity.name <=> o2.mentity.name end