Some queries retrieve result sets with many definitions inherited from the same base trait. E.g. List => Int => Option retrieves List.lift, Seq.lift, etc. Those "duplicated" results do not add much benefit as the most specific (List.lift) is usually the most useful to the user.
To avoid those polluted result sets, results with similar signatures can be grouped in one entry.
Some queries retrieve result sets with many definitions inherited from the same base trait. E.g.
List => Int => Option
retrievesList.lift
,Seq.lift
, etc. Those "duplicated" results do not add much benefit as the most specific (List.lift
) is usually the most useful to the user.To avoid those polluted result sets, results with similar signatures can be grouped in one entry.
E.g. a result set like
becomes