Skip to content

Commit c65f5d7

Browse files
committed
feat: Update fixity of operators.
1 parent 45cb41a commit c65f5d7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/DataFrame/Operators.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ import DataFrame.Internal.Nullable (
3636
)
3737
import DataFrame.Internal.Types (Promote, PromoteDiv)
3838

39-
infix 8 .^^, .^^., .^, .^.
40-
infix 6 .+, .-
41-
infix 7 .*, ./
39+
infixr 8 .^^, .^^., .^, .^.
40+
infixl 7 .*, ./, .*., ./.
41+
infixl 6 .+, .-, .+., .-.
4242
infix 4 .==, .==., .<, .<., .<=, .<=., .>=, .>=., .>, .>., ./=, ./=.
4343
infixr 3 .&&, .&&.
4444
infixr 2 .||, .||.

src/DataFrame/Typed/Expr.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ infixr 3 .&&., .&&
274274
infixr 2 .||., .||
275275
infixl 6 .+., .-.
276276
infixl 7 .*., ./.
277-
infix 8 .^^., .^^, .^., .^
277+
infixr 8 .^^., .^^, .^., .^
278278

279279
(.==.) ::
280280
(Columnable a, Eq a) => TExpr cols a -> TExpr cols a -> TExpr cols Bool

0 commit comments

Comments
 (0)