Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. (<$) :: Functor f => a -> f b -> f a

    xmonad-contrib XMonad.Config.Prime

    Replace all locations in the input with the same value. The default definition is fmap . const, but this may be overridden with a more efficient version.

    Examples

    Perform a computation with Maybe and replace the result with a constant value if it is Just:
    >>> 'a' <$ Just 2
    Just 'a'
    
    >>> 'a' <$ Nothing
    Nothing
    

  2. cons :: (Vector v a, Vector w a, Dim w ~ 'S (Dim v)) => a -> v a -> w a

    fixed-vector Data.Vector.Fixed

    Cons element to the vector

  3. snoc :: (Vector v a, Vector w a, Dim w ~ 'S (Dim v)) => a -> v a -> w a

    fixed-vector Data.Vector.Fixed

    Append element to the vector

  4. (*>) :: (C v, C a) => a -> v a -> v a

    numeric-prelude Algebra.Vector

    scale a vector by a scalar

  5. (*^) :: (Functor f, Num a) => a -> f a -> f a

    linear Linear.Vector

    Compute the left scalar product

    >>> 2 *^ V2 3 4
    V2 6 8
    

  6. functorScale :: (Functor v, C a) => a -> v a -> v a

    numeric-prelude Algebra.Vector

    No documentation available.

  7. ( #*& ) :: (C set, Enum a) => a -> set a -> set a

    board-games Game.Mastermind.CodeSet

    No documentation available.

  8. scaleD :: (Vector v b, Num b) => b -> v b -> v b

    rp-tree Data.RPTree

    No documentation available.

  9. snoc :: Vector v a => v a -> a -> v a

    rio RIO.Vector

    No documentation available.

  10. snoc :: Vector v a => v a -> a -> v a

    rebase Rebase.Data.Vector.Generic

    No documentation available.

Page 7 of many | Previous | Next