Hoogle Search
Within LTS Haskell 24.22 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
||. ) :: [Filter v] -> [Filter v] -> [Filter v]classy-prelude-yesod ClassyPrelude.Yesod The OR of two lists of filters. For example:
selectList ([ PersonAge >. 25 , PersonAge <. 30 ] ||. [ PersonIncome >. 15000 , PersonIncome <. 25000 ]) []
will filter records where a person's age is between 25 and 30 or a person's income is between (15000 and 25000). If you are looking for an (&&.) operator to do (A AND B AND (C OR D)) you can use the (++) operator instead as there is no (&&.). For example:selectList ([ PersonAge >. 25 , PersonAge <. 30 ] ++ ([PersonCategory ==. 1] ||. [PersonCategory ==. 5])) []
will filter records where a person's age is between 25 and 30 and (person's category is either 1 or 5).(
.|. ) :: Bits a => a -> a -> acopilot-language Copilot.Language.Operators.BitWise Bitwise "or"
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-record Database.Relational.Documentation Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.IBMDB2 Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.MySQL Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.Oracle Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.PostgreSQL Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.SQLServer Concatenate operator corresponding SQL || .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.SQLite3 Concatenate operator corresponding SQL || .
(
.|. ) :: Bits a => a -> a -> axmonad-contrib XMonad.Config.Prime Bitwise "or"