Example #1
0
 /// <summary>
 /// Compares the match result with another, results with lower position
 /// are ordered before those with higher position.
 /// </summary>
 public int CompareTo(MatchResult that)
 {
     return Ints.Compare(this.Position, that.Position);
 }