Skip to content

Change <|> to be right-associative #80

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Notable changes to this project are documented in this file. The format is based
Breaking changes:
- Migrate FFI to ES modules (#78 by @kl0tl and @JordanMartinez)
- Drop deprecated `MonadZero` instance (#76 by @JordanMartinez)
- Make `<|>` right associative (#80 by @JordanMartinez)

New features:

Expand Down
2 changes: 1 addition & 1 deletion src/Control/Alt.purs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import Data.Semigroup (append)
class Functor f <= Alt f where
alt :: forall a. f a -> f a -> f a

infixl 3 alt as <|>
infixr 3 alt as <|>

instance altArray :: Alt Array where
alt = append