We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fold1
1 parent 782beef commit 93a1a32Copy full SHA for 93a1a32
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
15
- uses: purescript-contrib/setup-purescript@main
16
with:
17
- purescript: "0.14.0-rc3"
+ purescript: "0.14.0-rc5"
18
19
- uses: actions/setup-node@v1
20
src/Data/Identity.purs
@@ -87,7 +87,6 @@ instance foldableIdentity :: Foldable Identity where
87
foldMap f (Identity x) = f x
88
89
instance foldable1Identity :: Foldable1 Identity where
90
- fold1 (Identity x) = x
91
foldMap1 f (Identity x) = f x
92
foldl1 _ (Identity x) = x
93
foldr1 _ (Identity x) = x
0 commit comments