-
Notifications
You must be signed in to change notification settings - Fork 50
Revise groupAllBy to just use an Ordering function #191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
6bd8e51
1108d57
5435ce4
bfc64e1
9c574f5
2e54ab5
8d0751e
609ce1f
99fefef
6369cfd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -584,40 +584,36 @@ span _ xs = { init: Nil, rest: xs } | |
|
||
-- | Group equal, consecutive elements of a list into lists. | ||
-- | | ||
-- | For example, | ||
-- | | ||
-- | ```purescript | ||
-- | group (1 : 1 : 2 : 2 : 1 : Nil) == | ||
-- | (NonEmptyList (NonEmpty 1 (1 : Nil))) : (NonEmptyList (NonEmpty 2 (2 : Nil))) : (NonEmptyList (NonEmpty 1 Nil)) : Nil | ||
-- | group (3 : 3 : 2 : 2 : 1 : 3 : Nil) == | ||
-- | NonEmptyList (3 :| 3 : Nil) : NonEmptyList (2 :| 2 : Nil) : NonEmptyList (1 :| Nil) : NonEmptyList (3 :| Nil) : Nil | ||
-- | ``` | ||
-- | | ||
-- | Running time: `O(n)` | ||
group :: forall a. Eq a => List a -> List (NEL.NonEmptyList a) | ||
group = groupBy (==) | ||
|
||
-- | Group equal elements of a list into lists. | ||
-- | | ||
-- | For example, | ||
-- | Sort, then group equal elements of a list into lists. | ||
-- | | ||
-- | ```purescript | ||
-- | groupAll (1 : 1 : 2 : 2 : 1 : Nil) == | ||
-- | (NonEmptyList (NonEmpty 1 (1 : 1 : Nil))) : (NonEmptyList (NonEmpty 2 (2 : Nil))) : Nil | ||
-- | groupAll (3 : 3 : 2 : 2 : 1 : 3 : Nil) == | ||
-- | NonEmptyList (1 :| Nil) : NonEmptyList (2 :| 2 : Nil) : NonEmptyList (3 :| 3 : 3 : Nil) : Nil | ||
-- | ``` | ||
-- | | ||
-- | Running time: `O(n log n)` | ||
groupAll :: forall a. Ord a => List a -> List (NEL.NonEmptyList a) | ||
groupAll = group <<< sort | ||
|
||
-- | Deprecated previous name of `groupAll`. | ||
group' :: forall a. Warn (Text "'group\'' is deprecated, use groupAll instead") => Ord a => List a -> List (NEL.NonEmptyList a) | ||
group' = groupAll | ||
|
||
-- | Group equal, consecutive elements of a list into lists, using the specified | ||
-- | equivalence relation to determine equality. | ||
-- | | ||
-- | For example, | ||
-- | Group equal, consecutive elements of a list into lists, using the provided | ||
-- | equivalence function to determine equality. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the approved phrasing for the nubBy changes, so wanted to keep things consistent here too. |
||
-- | | ||
-- | ```purescript | ||
-- | groupBy (\a b -> odd a && odd b) (1 : 3 : 2 : 4 : 3 : 3 : Nil) == | ||
-- | (NonEmptyList (NonEmpty 1 (3 : Nil))) : (NonEmptyList (NonEmpty 2 Nil)) : (NonEmptyList (NonEmpty 4 Nil)) : (NonEmptyList (NonEmpty 3 (3 : Nil))) : Nil | ||
-- | groupBy (eq `on` (_ `div` 10)) (32 : 31 : 21 : 22 : 11 : 33 : Nil) == | ||
-- | NonEmptyList (32 :| 31 : Nil) : NonEmptyList (21 :| 22 : Nil) : NonEmptyList (11 :| Nil) : NonEmptyList (33 :| Nil) : Nil | ||
-- | ``` | ||
-- | | ||
-- | Running time: `O(n)` | ||
|
@@ -626,17 +622,16 @@ groupBy _ Nil = Nil | |
groupBy eq (x : xs) = case span (eq x) xs of | ||
{ init: ys, rest: zs } -> NEL.NonEmptyList (x :| ys) : groupBy eq zs | ||
|
||
-- | Group equal elements of a list into lists, using the specified | ||
-- | equivalence relation to determine equality. | ||
-- | | ||
-- | For example, | ||
-- | Sort, then group equal elements of a list into lists, using the provided comparison function. | ||
-- | | ||
-- | ```purescript | ||
-- | groupAllBy (\a b -> odd a && odd b) (1 : 3 : 2 : 4 : 3 : 3 : Nil) == | ||
-- | (NonEmptyList (NonEmpty 1 Nil)) : (NonEmptyList (NonEmpty 2 Nil)) : (NonEmptyList (NonEmpty 3 (3 : 3 : Nil))) : (NonEmptyList (NonEmpty 4 Nil)) : Nil | ||
-- | groupAllBy (compare `on` (_ `div` 10)) (32 : 31 : 21 : 22 : 11 : 33 : Nil) == | ||
-- | NonEmptyList (11 :| Nil) : NonEmptyList (21 :| 22 : Nil) : NonEmptyList (32 :| 31 : 33) : Nil | ||
-- | ``` | ||
groupAllBy :: forall a. Ord a => (a -> a -> Boolean) -> List a -> List (NEL.NonEmptyList a) | ||
groupAllBy p = groupBy p <<< sort | ||
-- | | ||
-- | Running time: `O(n log n)` | ||
groupAllBy :: forall a. (a -> a -> Ordering) -> List a -> List (NEL.NonEmptyList a) | ||
groupAllBy p = groupBy (\x y -> p x y == EQ) <<< sortBy p | ||
|
||
-- | Returns a lists of elements which do and do not satisfy a predicate. | ||
-- | | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ module Test.Data.List (testList) where | |
|
||
import Prelude | ||
|
||
import Data.Foldable (foldMap, foldl) | ||
import Data.Foldable (class Foldable, foldMap, foldl) | ||
import Data.FoldableWithIndex (foldMapWithIndex, foldlWithIndex, foldrWithIndex) | ||
import Data.Function (on) | ||
import Data.List (List(..), (..), stripPrefix, Pattern(..), length, range, foldM, unzip, zip, zipWithA, zipWith, intersectBy, intersect, (\\), deleteBy, delete, unionBy, union, nubBy, nub, group, groupAll, groupBy, groupAllBy, partition, span, dropWhile, drop, dropEnd, takeWhile, take, takeEnd, sortBy, sort, catMaybes, mapMaybe, filterM, filter, concat, concatMap, reverse, alterAt, modifyAt, updateAt, deleteAt, insertAt, findLastIndex, findIndex, elemLastIndex, elemIndex, (!!), uncons, unsnoc, init, tail, last, head, insertBy, insert, snoc, null, singleton, fromFoldable, transpose, mapWithIndex, (:)) | ||
import Data.List.NonEmpty as NEL | ||
import Data.Maybe (Maybe(..), isNothing, fromJust) | ||
|
@@ -21,7 +22,11 @@ import Test.Assert (assert) | |
|
||
testList :: Effect Unit | ||
testList = do | ||
let l = fromFoldable | ||
let | ||
l = fromFoldable | ||
|
||
nel :: ∀ f a. Foldable f => a -> f a -> NEL.NonEmptyList a | ||
milesfrain marked this conversation as resolved.
Show resolved
Hide resolved
|
||
nel x xs = NEL.NonEmptyList $ x :| fromFoldable xs | ||
|
||
log "strip prefix" | ||
assert $ stripPrefix (Pattern (1:Nil)) (1:2:Nil) == Just (2:Nil) | ||
|
@@ -265,16 +270,16 @@ testList = do | |
assert $ spanResult.rest == l [4, 5, 6, 7] | ||
|
||
log "group should group consecutive equal elements into lists" | ||
assert $ group (l [1, 2, 2, 3, 3, 3, 1]) == l [NEL.singleton 1, NEL.NonEmptyList (2 :| l [2]), NEL.NonEmptyList (3 :| l [3, 3]), NEL.singleton 1] | ||
assert $ group (l [3, 3, 2, 2, 1, 3]) == l [nel 3 [3], nel 2 [2], nel 1 [], nel 3 []] | ||
|
||
log "groupAll should group equal elements into lists" | ||
assert $ groupAll (l [1, 2, 2, 3, 3, 3, 1]) == l [NEL.NonEmptyList (1 :| l [1]), NEL.NonEmptyList (2 :| l [2]), NEL.NonEmptyList (3 :| l [3, 3])] | ||
log "groupAll should sort then group equal elements into lists" | ||
assert $ groupAll (l [3, 3, 2, 2, 1, 3]) == l [nel 1 [], nel 2 [2], nel 3 [3, 3]] | ||
|
||
log "groupBy should group consecutive equal elements into lists based on an equivalence relation" | ||
assert $ groupBy (\x y -> odd x && odd y) (l [1, 1, 2, 2, 3, 3]) == l [NEL.NonEmptyList (1 :| l [1]), NEL.singleton 2, NEL.singleton 2, NEL.NonEmptyList (3 :| l [3])] | ||
assert $ groupBy (eq `on` (_ `div` 10)) (l [32, 31, 21, 22, 11, 33]) == l [nel 32 [31], nel 21 [22], nel 11 [], nel 33 []] | ||
|
||
log "groupAllBy should group equal elements into lists based on an equivalence relation" | ||
assert $ groupAllBy (\x y -> odd x && odd y) (l [1, 3, 2, 4, 3, 3]) == l [NEL.singleton 1, NEL.singleton 2, NEL.NonEmptyList (3 :| l [3, 3]), NEL.singleton 4] | ||
log "groupAllBy should sort then group equal elements into lists based on a comparison function" | ||
assert $ groupAllBy (compare `on` (_ `div` 10)) (l [32, 31, 21, 22, 11, 33]) == l [nel 11 [], nel 21 [22], nel 32 [31, 33]] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A test case like this is necessary to demonstrate the degree of ordering preserved. |
||
|
||
log "partition should separate a list into a tuple of lists that do and do not satisfy a predicate" | ||
let partitioned = partition (_ > 2) (l [1, 5, 3, 2, 4]) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's pretty obvious that what follows is an example, so figured it would be better to remove that line to make the pursuit results more compact.