Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (<+>) :: Box -> Box -> Box

    boxes Text.PrettyPrint.Boxes

    Paste two boxes together horizontally with a single intervening column of space, using a default (top) alignment.

  2. (<++>) :: Applicative m => m Doc -> m Doc -> m Doc

    graphviz Data.GraphViz.Printing

    The document (x <++> y) concatenates document x and y with a spacebreak in between. (infixr 6)

  3. (<+>) :: Applicative m => m Doc -> m Doc -> m Doc

    graphviz Data.GraphViz.Printing

    The document (x <+> y) concatenates document x and y with a space in between. (infixr 6)

  4. (<*>.+) :: C x => T (v, v) (x -> a) -> (v -> x) -> T (v, v) a

    numeric-prelude Algebra.Additive

    addPair :: (Additive.C a, Additive.C b) => (a,b) -> (a,b) -> (a,b)
    addPair = Elem.run2 $ Elem.with (,) <*>.+  fst <*>.+  snd
    

  5. (<+>) :: (C v, C a) => v a -> v a -> v a

    numeric-prelude Algebra.Vector

    add and subtract elements

  6. (^+) :: Multiplicative a => a -> Natural -> a

    numhask NumHask

    raise a number to a non-negative Natural power. Unlike (^^) and (^), this does not require Divisive or Subtractive constraints, so it works for unsigned types such as Natural and Word64.

    >>> 2 ^+ 3
    8
    
    >>> 2 ^+ 0
    1
    

  7. (|+) :: AdditiveAction m => m -> AdditiveScalar m -> m

    numhask NumHask

    No documentation available.

  8. (|+) :: AdditiveAction m => m -> AdditiveScalar m -> m

    numhask NumHask.Algebra.Action

    No documentation available.

  9. (^+) :: Multiplicative a => a -> Natural -> a

    numhask NumHask.Data.Integral

    raise a number to a non-negative Natural power. Unlike (^^) and (^), this does not require Divisive or Subtractive constraints, so it works for unsigned types such as Natural and Word64.

    >>> 2 ^+ 3
    8
    
    >>> 2 ^+ 0
    1
    

  10. type family (x :: Ctx k) <+> (y :: Ctx k) :: Ctx k

    parameterized-utils Data.Parameterized.Context

    Append two type-level contexts.

Page 49 of many | Previous | Next