• About
  • Snapshots
  • LTS
  • Nightly
  • FAQ
  • Blog

Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

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

  1. fromLists :: Element t => [[t]] -> Matrix t

    hmatrix Numeric.LinearAlgebra.Data

    Creates a Matrix from a list of lists (considered as rows).

    >>> fromLists [[1,2],[3,4],[5,6]]
    (3><2)
    [ 1.0, 2.0
    , 3.0, 4.0
    , 5.0, 6.0 ]
    

  2. toList :: Storable a => Vector a -> [a]

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

  3. toLists :: Element t => Matrix t -> [[t]]

    hmatrix Numeric.LinearAlgebra.Data

    the inverse of fromLists

  4. maybeToList :: Maybe a -> [a]

    strict Data.Strict.Maybe

    Analogous to maybeToList in Data.Maybe.

  5. mapFromList :: IsMap map => [(ContainerKey map, MapValue map)] -> map

    mono-traversable Data.Containers

    Convert a list of key-value pairs to a map

  6. mapToList :: IsMap map => map -> [(ContainerKey map, MapValue map)]

    mono-traversable Data.Containers

    Convert a map to a list of key-value pairs.

  7. setFromList :: IsSet set => [Element set] -> set

    mono-traversable Data.Containers

    Convert a list to a set.

  8. setToList :: IsSet set => set -> [Element set]

    mono-traversable Data.Containers

    Convert a set to a list.

  9. otoList :: MonoFoldable mono => mono -> [Element mono]

    mono-traversable Data.MonoTraversable

    Convert a monomorphic container to a list.

  10. toList :: MonoFoldable mono => mono -> [Element mono]

    mono-traversable Data.MonoTraversable.Unprefixed

    Synonym for otoList

Page 75 of many | Previous | Next

Stackage is a service provided by the Haskell Foundation │ Originally developed by FP Complete