| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Rel8.Internal.Expr.Eq
Synopsis
- (==.) :: Sql DBEq a => Expr a -> Expr a -> Expr Bool
- (/=.) :: Sql DBEq a => Expr a -> Expr a -> Expr Bool
- (==?) :: DBEq a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- (/=?) :: DBEq a => Expr (Maybe a) -> Expr (Maybe a) -> Expr Bool
- in_ :: (Sql DBEq a, Foldable f) => Expr a -> f (Expr a) -> Expr Bool
Documentation
(/=.) :: Sql DBEq a => Expr a -> Expr a -> Expr Bool infix 4 Source #
Test if two expressions are different (not equal).
This corresponds to the SQL IS DISTINCT FROM operator, and will return
false when comparing two null values. This differs from ordinary <>
which would return null. This operator is closer to Haskell's /=
operator. For an operator identical to SQL <>, see /=?.