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.
(
.||. ) :: SearchExpression -> SearchExpression -> SearchExpressionbugzilla-redhat Web.RedHatBugzilla.Search No documentation available.
(
.||. ) :: Applicative f => f Bool -> f Bool -> f Boolclash-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(
.||. ) :: Applicative f => f Bool -> f Bool -> f Boolclash-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(
.||. ) :: Applicative f => f Bool -> f Bool -> f Boolclash-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(
.||. ) :: Applicative f => f Bool -> f Bool -> f Boolclash-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(
.||. ) :: Pattern -> Pattern -> Patternhakyll Hakyll.Core.Identifier.Pattern || for patterns: the given identifier must match any subterm
(
||. ) :: [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).(
.|. ) :: BitWise a => a -> a -> ahw-bits HaskellWorks.Data.Bits.BitWise Bit-wise OR
(
||. ) :: [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).(
||. ) :: [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).