We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a2793 commit ecb804dCopy full SHA for ecb804d
2 files changed
src/DataFrame/Typed/Expr.hs
@@ -134,7 +134,8 @@ lit = TExpr . Lit
134
135
-- | Conditional expression.
136
ifThenElse ::
137
- (Columnable a) => TExpr cols Bool -> TExpr cols a -> TExpr cols a -> TExpr cols a
+ (Columnable a) =>
138
+ TExpr cols Bool -> TExpr cols a -> TExpr cols a -> TExpr cols a
139
ifThenElse (TExpr c) (TExpr t) (TExpr e) = TExpr (If c t e)
140
141
-------------------------------------------------------------------------------
src/DataFrame/Typed/TH.hs
@@ -1,7 +1,7 @@
1
{-# LANGUAGE DataKinds #-}
2
{-# LANGUAGE OverloadedStrings #-}
3
{-# LANGUAGE ScopedTypeVariables #-}
4
-{-# LANGUAGE TemplateHaskell #-}
+{-# LANGUAGE TemplateHaskellQuotes #-}
5
{-# LANGUAGE TypeApplications #-}
6
7
module DataFrame.Typed.TH (
0 commit comments