Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. foldVectorWithIndex :: Storable a => (Int -> a -> b -> b) -> b -> Vector a -> b

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  2. freezeVector :: Storable t => STVector s t -> ST s (Vector t)

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  3. liftSTVector :: Storable t => (Vector t -> a) -> STVector s t -> ST s a

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  4. mapVectorM :: (Storable a, Storable b, Monad m) => (a -> m b) -> Vector a -> m (Vector b)

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors the monad m must be strict

  5. mapVectorM_ :: (Storable a, Monad m) => (a -> m ()) -> Vector a -> m ()

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors

  6. mapVectorWithIndex :: (Storable a, Storable b) => (Int -> a -> b) -> Vector a -> Vector b

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  7. mapVectorWithIndexM :: (Storable a, Storable b, Monad m) => (Int -> a -> m b) -> Vector a -> m (Vector b)

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors with the zero-indexed index passed to the mapping function the monad m must be strict

  8. mapVectorWithIndexM_ :: (Storable a, Monad m) => (Int -> a -> m ()) -> Vector a -> m ()

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors with the zero-indexed index passed to the mapping function

  9. matrixFromVector :: Storable t => MatrixOrder -> Int -> Int -> Vector t -> Matrix t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  10. modifyVector :: Storable t => STVector s t -> Int -> (t -> t) -> ST s ()

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

Page 44 of many | Previous | Next