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.

  1. (||.) :: [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).

  2. (.|.) :: Bits a => a -> a -> a

    copilot-language Copilot.Language.Operators.BitWise

    Bitwise "or"

  3. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-record Database.Relational.Documentation

    Concatenate operator corresponding SQL || .

  4. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.IBMDB2

    Concatenate operator corresponding SQL || .

  5. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.MySQL

    Concatenate operator corresponding SQL || .

  6. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.Oracle

    Concatenate operator corresponding SQL || .

  7. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.PostgreSQL

    Concatenate operator corresponding SQL || .

  8. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.SQLServer

    Concatenate operator corresponding SQL || .

  9. (.||.) :: OperatorContext c => Record c a -> Record c a -> Record c a

    relational-schemas Database.Custom.SQLite3

    Concatenate operator corresponding SQL || .

  10. (.|.) :: Bits a => a -> a -> a

    xmonad-contrib XMonad.Config.Prime

    Bitwise "or"

Page 8 of many | Previous | Next