We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d004644 commit 54e5474Copy full SHA for 54e5474
.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/Set/NonEmpty.purs
@@ -52,7 +52,6 @@ derive newtype instance foldableNonEmptySet :: Foldable NonEmptySet
52
53
instance foldable1NonEmptySet :: Foldable1 NonEmptySet where
54
foldMap1 f = foldMap1 f <<< (toUnfoldable1 :: forall a. NonEmptySet a -> NonEmptyList a)
55
- fold1 = foldMap1 identity
56
foldr1 f = foldr1 f <<< (toUnfoldable1 :: forall a. NonEmptySet a -> NonEmptyList a)
57
foldl1 f = foldl1 f <<< (toUnfoldable1 :: forall a. NonEmptySet a -> NonEmptyList a)
58
0 commit comments