Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. 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

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

    matrices Data.Matrix.Storable

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

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

    matrices Data.Matrix.Storable

    O(m*n) List of lists

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

    matrices Data.Matrix.Unboxed

    No documentation available.

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

    matrices Data.Matrix.Unboxed

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

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

    matrices Data.Matrix.Unboxed

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

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

    matrices Data.Matrix.Unboxed

    O(m*n) List of lists

  8. fromList :: (Eq k, Hashable k) => [(k, a)] -> MonoidalHashMap k a

    monoidal-containers Data.HashMap.Monoidal

    O(n*log n). Construct a map with the supplied mappings. If the list contains duplicate mappings, values will be replaced.

  9. fromListWith :: (Eq k, Hashable k) => (a -> a -> a) -> [(k, a)] -> MonoidalHashMap k a

    monoidal-containers Data.HashMap.Monoidal

    O(n*log n). Construct a map with the supplied mappings. If the list contains duplicate mappings, values will be merged using the provided combining function.

  10. toList :: MonoidalHashMap k a -> [(k, a)]

    monoidal-containers Data.HashMap.Monoidal

    O(n*log n). Return a list of this map's elements. The list is produced lazily. The order of its elements is unspecified.

Page 128 of many | Previous | Next