We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05e4445 commit f8814d3Copy full SHA for f8814d3
CHANGELOG.md
@@ -7,6 +7,7 @@ Notable changes to this project are documented in this file. The format is based
7
Breaking changes:
8
- Migrate FFI to ES modules (#78 by @kl0tl and @JordanMartinez)
9
- Drop deprecated `MonadZero` instance (#76 by @JordanMartinez)
10
+- Make `<|>` right associative (#80 by @JordanMartinez)
11
12
New features:
13
src/Control/Alt.purs
@@ -36,7 +36,7 @@ import Data.Semigroup (append)
36
class Functor f <= Alt f where
37
alt :: forall a. f a -> f a -> f a
38
39
-infixl 3 alt as <|>
+infixr 3 alt as <|>
40
41
instance altArray :: Alt Array where
42
alt = append
0 commit comments