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

    bugzilla-redhat Web.RedHatBugzilla.Search

    No documentation available.

  2. (.||.) :: Applicative f => f Bool -> f Bool -> f Bool

    clash-prelude Clash.Explicit.Signal

    The above type is a generalization for:

    (.||.) :: Signal Bool -> Signal Bool -> Signal Bool
    
    It is a version of (||) that returns a Signal of Bool

  3. (.||.) :: Applicative f => f Bool -> f Bool -> f Bool

    clash-prelude Clash.Prelude

    The above type is a generalization for:

    (.||.) :: Signal Bool -> Signal Bool -> Signal Bool
    
    It is a version of (||) that returns a Signal of Bool

  4. (.||.) :: Applicative f => f Bool -> f Bool -> f Bool

    clash-prelude Clash.Signal

    The above type is a generalization for:

    (.||.) :: Signal Bool -> Signal Bool -> Signal Bool
    
    It is a version of (||) that returns a Signal of Bool

  5. (.||.) :: Applicative f => f Bool -> f Bool -> f Bool

    clash-prelude Clash.Signal.Internal

    The above type is a generalization for:

    (.||.) :: Signal Bool -> Signal Bool -> Signal Bool
    
    It is a version of (||) that returns a Signal of Bool

  6. (.||.) :: Pattern -> Pattern -> Pattern

    hakyll Hakyll.Core.Identifier.Pattern

    || for patterns: the given identifier must match any subterm

  7. (||.) :: [Filter v] -> [Filter v] -> [Filter v]

    hledger-web Hledger.Web.Import

    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).

  8. (.|.) :: BitWise a => a -> a -> a

    hw-bits HaskellWorks.Data.Bits.BitWise

    Bit-wise OR

  9. (||.) :: [Filter v] -> [Filter v] -> [Filter v]

    persistent-mtl Database.Persist.Sql.Shim

    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).

  10. (||.) :: [Filter v] -> [Filter v] -> [Filter v]

    persistent-redis Database.Persist.Redis

    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).

Page 7 of many | Previous | Next