Skip to content

Commit e8c4cba

Browse files
committed
Move maximumBy/minimumBy (fixes #81)
1 parent 311549f commit e8c4cba

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

rio/ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for rio
22

3+
## 0.1.1.0
4+
5+
* Move some accidentally included partial functions
6+
37
## 0.1.0.0
48

59
* Initial stable release

rio/package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rio
2-
version: 0.1.0.0
2+
version: 0.1.1.0
33
synopsis: A standard library for Haskell
44
description: See README and Haddocks at <https://www.stackage.org/package/rio>
55
license: MIT

rio/src/RIO/List.hs

-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,6 @@ module RIO.List
178178
-- | The function is assumed to define a total ordering.
179179
, Data.List.sortBy
180180
, Data.List.insertBy
181-
, Data.List.maximumBy
182-
, Data.List.minimumBy
183181

184182
-- ** The \"@generic@\" operations
185183
-- | The prefix \`@generic@\' indicates an overloaded function that

rio/src/RIO/List/Partial.hs

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ module RIO.List.Partial
1414
-- ** Special folds
1515
, Data.List.maximum
1616
, Data.List.minimum
17+
, Data.List.maximumBy
18+
, Data.List.minimumBy
1719

1820
-- * Building lists
1921

0 commit comments

Comments
 (0)