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

    No documentation available.

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

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

    matrices Data.Matrix.Unboxed

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

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

    matrices Data.Matrix.Unboxed

    O(m*n) List of lists

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

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

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

  8. fromAscList :: [(Int, a)] -> MonoidalIntMap a

    monoidal-containers Data.IntMap.Monoidal

    No documentation available.

  9. fromAscListWith :: (a -> a -> a) -> [(Int, a)] -> MonoidalIntMap a

    monoidal-containers Data.IntMap.Monoidal

    No documentation available.

  10. fromAscListWithKey :: (Int -> a -> a -> a) -> [(Int, a)] -> MonoidalIntMap a

    monoidal-containers Data.IntMap.Monoidal

    No documentation available.

Page 128 of many | Previous | Next