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. fromList :: Context a => (Int, Int) -> [a] -> Matrix a

    matrices Data.Matrix

    No documentation available.

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

    matrices Data.Matrix

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

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

    matrices Data.Matrix

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

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

    matrices Data.Matrix

    O(m*n) List of lists

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

    matrices Data.Matrix.Class

    No documentation available.

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

    matrices Data.Matrix.Class

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

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

    matrices Data.Matrix.Class

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

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

    matrices Data.Matrix.Class

    O(m*n) List of lists

  9. fromList :: forall m (v :: Type -> Type) a . Matrix m v a => (Int, Int) -> [a] -> m v a

    matrices Data.Matrix.Generic

    No documentation available.

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

    matrices Data.Matrix.Generic

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

Page 126 of many | Previous | Next