We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb5774 commit 660c8e6Copy full SHA for 660c8e6
CHANGELOG.md
@@ -49,6 +49,8 @@ Bug-fixes
49
re-exported in their full generality which would lead to unsolved meta variables at
50
their use sites.
51
52
+* In `Data.Maybe.Base` the fixity declaration of `_<∣>_` was missing. This has been fixed.
53
+
54
Non-backwards compatible changes
55
--------------------------------
56
src/Data/Maybe/Base.agda
@@ -100,6 +100,7 @@ just a >>= f = f a
100
101
-- Alternative: <∣>
102
103
+infixr 6 _<∣>_
104
_<∣>_ : Maybe A → Maybe A → Maybe A
105
just x <∣> my = just x
106
nothing <∣> my = my
0 commit comments