Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. (!!!) :: [a] -> Int -> a

    tidal-core Sound.Tidal.Utils

    like !! selects nth element from xs, but wraps over at the end of xs

    >>> map ((!!!) [1,3,5]) [0,1,2,3,4,5]
    [1,3,5,1,3,5]
    

  2. (!!!) :: [a] -> Int -> Maybe a

    Agda Agda.Utils.List

    Lookup function (safe). O(min n index).

  3. (!!!) :: [a] -> Int -> Maybe a

    ShellCheck ShellCheck.Prelude

    No documentation available.

  4. (!!!) :: (Typed a, Eq b, Num b, Typed b) => [Stream a] -> Stream b -> Stream a

    copilot-libraries Copilot.Library.Utils

    Index. WARNING: Very expensive! Consider using this only for very short lists.

  5. (!!!) :: AtIndex v => v -> Position -> Elem v

    hw-prim HaskellWorks.Data.AtIndex

    No documentation available.

  6. (!!*) :: Count a -> Int -> Integer

    size-based Control.Enumerable.Count

    Counts the number of values of a given size, 0 if out of bounds.

  7. ($!!) :: NFData a => (a -> b) -> a -> b

    deepseq Control.DeepSeq

    the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.

  8. (<$!!>) :: (Monad m, NFData b) => (a -> b) -> m a -> m b

    deepseq Control.DeepSeq

    Deeply strict version of <$>.

  9. (*!!) :: (Functor m, Functor r, Num a) => a -> m (r a) -> m (r a)

    linear Linear.Matrix

    Scalar-matrix product

    >>> 5 *!! V2 (V2 1 2) (V2 3 4)
    V2 (V2 5 10) (V2 15 20)
    

  10. ($!!) :: NFData a => (a -> b) -> a -> b

    rio RIO.Prelude

    the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.

Page 9 of many | Previous | Next