Skip to content

Commit 93a1a32

Browse files
Remove fold1 implementation from Foldable1 instance (#23)
* Remove `fold1` implementation from Foldable1 instance `fold1` is no longer a member of the Foldable1 class * Update CI to v0.14.0-rc5
1 parent 782beef commit 93a1a32

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: purescript-contrib/setup-purescript@main
1616
with:
17-
purescript: "0.14.0-rc3"
17+
purescript: "0.14.0-rc5"
1818

1919
- uses: actions/setup-node@v1
2020
with:

src/Data/Identity.purs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ instance foldableIdentity :: Foldable Identity where
8787
foldMap f (Identity x) = f x
8888

8989
instance foldable1Identity :: Foldable1 Identity where
90-
fold1 (Identity x) = x
9190
foldMap1 f (Identity x) = f x
9291
foldl1 _ (Identity x) = x
9392
foldr1 _ (Identity x) = x

0 commit comments

Comments
 (0)