Hoogle Search

Within LTS Haskell 24.5 (ghc-9.10.2)

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

  1. toLists :: forall m (v :: Type -> Type) a . Matrix m v a => m v a -> [[a]]

    matrices Data.Matrix.Generic

    O(m*n) List of lists

  2. type AssocList a = [((Int, Int), a)]

    matrices Data.Matrix.Sparse.Generic

    No documentation available.

  3. fromLists :: forall m (v :: Type -> Type) a . Matrix m v a => [[a]] -> m v a

    matrices Data.Matrix.Sparse.Generic

    O(m*n) Create matrix from list of lists, it doesn't check if the list of list is a valid matrix

  4. toList :: forall m (v :: Type -> Type) a . Matrix m v a => m v a -> [a]

    matrices Data.Matrix.Sparse.Generic

    O(m*n) Create a list by concatenating rows

  5. toLists :: forall m (v :: Type -> Type) a . Matrix m v a => m v a -> [[a]]

    matrices Data.Matrix.Sparse.Generic

    O(m*n) List of lists

  6. fromList :: Context a => (Int, Int) -> [a] -> Matrix a

    matrices Data.Matrix.Storable

    No documentation available.

  7. fromLists :: Context a => [[a]] -> Matrix a

    matrices Data.Matrix.Storable

    O(m*n) Create matrix from list of lists, it doesn't check if the list of list is a valid matrix

  8. toList :: Context a => Matrix a -> [a]

    matrices Data.Matrix.Storable

    O(m*n) Create a list by concatenating rows

  9. toLists :: Context a => Matrix a -> [[a]]

    matrices Data.Matrix.Storable

    O(m*n) List of lists

  10. fromList :: Context a => (Int, Int) -> [a] -> Matrix a

    matrices Data.Matrix.Unboxed

    No documentation available.

Page 127 of many | Previous | Next