We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb5774 commit fd6030dCopy full SHA for fd6030d
CHANGELOG/v1.7.md
@@ -26,6 +26,8 @@ Bug-fixes
26
* Added missing fixity declaration to `_<_` in
27
`Relation.Binary.Construct.NonStrictToStrict`.
28
29
+* Added missing fixity declaration to `_<∣>_` in `Data.Maybe.Base`.
30
+
31
Non-backwards compatible changes
32
--------------------------------
33
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