úÎ)D(8     (c) Volodymyr YaschenkoBSD3ualinuxcn@gmail.comUnstableportable Safe-InferredThe  function behaves just like 4, except it uses a user-supplied equality predicate. 2repeatedBy (>2) "This is the test line" == " stei"O finds only the elements that are present more than once in the list. Example:  repeated "foo bar" == "o" 8 gets only unique elements, that do not have duplicates. unique "foo bar" == " abrf"' of each element in the list. Example: jcount "This is the test line" == [(' ',4),('s',3),('T',1),('t',3),('e',3),('h',2),('i',3),('l',1),('n',1)]B of each elements in the list, it sorts by their number. Example: l count_ "This is the test line" == [('n',1),('l',1),('T',1),('h',2),('i',3),('e',3),('t',3),('s',3),(' ',4)](c) Volodymyr YaschenkoBSD3ualinuxcn@gmail.comUnstableportable Safe-InferredThe X function behaves just like repeated, except it uses a user-supplied equality predicate. 2repeatedBy (>2) "This is the test line" == " eist"O finds only the elements that are present more than once in the list. Example: repeated "foo bar" == "o" T gets only unique elements, that do not have duplicates. It sorts them. Example: unique "foo bar" == " abfr"D of each element in the list, it sorts by keys (elements). Example: Dcount "foo bar" == [(' ',1),('a',1),('b',1),('f',1),('o',2),('r',1)]  B of each elements in the list, it sorts by their number. Example: Ecount_ "foo bar" == [(' ',1),('a',1),('b',1),('f',1),('r',1),('o',2)]    (c) Volodymyr YaschenkoBSD3ualinuxcn@gmail.comUnstableportable Safe-Inferred  A sorts the list and removes the duplicates of elements. Example: sortUniq "foo bar" == " abfor"  O finds only the elements that are present more than once in the list. Example: repeated "foo bar" == "o" fThe repeatedBy function behaves just like repeated, except it uses a user-supplied equality predicate. 2repeatedBy (>2) "This is the test line" == " eist"  T gets only unique elements, that do not have duplicates. It sorts them. Example: unique "foo bar" == " abfr"D of each element in the list, it sorts by keys (elements). Example: Dcount "foo bar" == [(' ',1),('a',1),('b',1),('f',1),('o',2),('r',1)]B of each elements in the list, it sorts by their number. Example: Ecount_ "foo bar" == [(' ',1),('a',1),('b',1),('f',1),('r',1),('o',2)]D gets the number of occurrences of the specified element. Example: countElem 'o' "foo bar" == 2           Unique-0.4Data.List.UniqueUnsortedData.List.UniqueStrictData.List.Unique repeatedByrepeateduniquecountcount_sortUniq countElemcountMapfilterByLength