Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 90c6bea

Browse files
committed
Increase the precedence of $$.
1 parent 53598bd commit 90c6bea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

semantic-core/src/Data/Core.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ data Core f a
7171
deriving (Foldable, Functor, Generic1, Traversable)
7272

7373
infixr 1 :>>
74-
infixl 2 :$
74+
infixl 9 :$
7575
infixl 4 :.
7676
infix 3 :=
7777

@@ -139,7 +139,7 @@ unseqs = go
139139
($$) :: (Carrier sig m, Member Core sig) => m a -> m a -> m a
140140
f $$ a = send (f :$ a)
141141

142-
infixl 2 $$
142+
infixl 9 $$
143143

144144
-- | Application of a function to a sequence of arguments.
145145
($$*) :: (Foldable t, Carrier sig m, Member Core sig) => m a -> t (m a) -> m a

0 commit comments

Comments
 (0)