Hoogle Search

Within LTS Haskell 24.32 (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]

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

  2. (<.>) :: forall (n :: Nat) s . (KnownNat n, Reifies s W) => BVar s (R n) -> BVar s (R n) -> BVar s ℝ

    hmatrix-backprop Numeric.LinearAlgebra.Static.Backprop

    Dot product

  3. pattern (:.) :: Stringy s => Char -> s -> s

    hpp Hpp.StringSig

    No documentation available.

  4. (/^.) :: Monad m => s -> Getting a s a -> m a

    hw-mquery HaskellWorks.Data.MQuery

    No documentation available.

  5. (/^..) :: (Monad m, Foldable t, Monoid (m a)) => s -> Getting (t a) s (t a) -> m a

    hw-mquery HaskellWorks.Data.MQuery

    No documentation available.

  6. (>>^.) :: Monad m => m a -> Getting b a b -> m b

    hw-mquery HaskellWorks.Data.MQuery

    No documentation available.

  7. (>>^..) :: (Monad m, Foldable t, Monoid (m a), Monoid (m b)) => m a -> Getting (t b) a (t b) -> m b

    hw-mquery HaskellWorks.Data.MQuery

    No documentation available.

  8. (:.:) :: forall p b1 b a . Grammar p b1 b -> Grammar p a b1 -> Grammar p a b

    invertible-grammar Data.InvertibleGrammar.Base

    Grammar composition.

  9. (=.=) :: JType -> JType -> TMonad JType

    jmacro Language.Javascript.JMacro.TypeCheck

    No documentation available.

  10. (<.>) :: InnerSpace v => v -> v -> Scalar v

    learn-physics Physics.Learn

    Inner/dot product

Page 147 of many | Previous | Next