Skip to content

Commit fd6030d

Browse files
committed
Add fixity declaration to _<∣>_ (agda#207)
1 parent 6fb5774 commit fd6030d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG/v1.7.md

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Bug-fixes
2626
* Added missing fixity declaration to `_<_` in
2727
`Relation.Binary.Construct.NonStrictToStrict`.
2828

29+
* Added missing fixity declaration to `_<∣>_` in `Data.Maybe.Base`.
30+
2931
Non-backwards compatible changes
3032
--------------------------------
3133

src/Data/Maybe/Base.agda

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ just a >>= f = f a
100100

101101
-- Alternative: <∣>
102102

103+
infixr 6 _<∣>_
103104
_<∣>_ : Maybe A Maybe A Maybe A
104105
just x <∣> my = just x
105106
nothing <∣> my = my

0 commit comments

Comments
 (0)