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 :: (Hashable a, Ord a) => [a] -> Set a

    hashmap Data.HashSet

    Create a set from a list of elements.

  2. fromList :: [(Param, ParamValue)] -> QueryData

    hyperbole Web.Hyperbole.Data.QueryData

    No documentation available.

  3. fromList :: [Cookie] -> Cookies

    hyperbole Web.Hyperbole.Data.Session

    No documentation available.

  4. fromList :: [(x, y)] -> T x y

    interpolation Numeric.Interpolation.NodeList

    list must be sorted with respect to first element

  5. fromList :: [C] -> Vector C

    learn-physics Physics.Learn.QuantumMat

    Construct a vector from a list of complex numbers.

  6. fromList :: forall (m :: Type -> Type) a . Monad m => [a] -> Stream m a

    leveldb-haskell Data.Stream.Monadic

    No documentation available.

  7. fromList :: (Ord k, Eq v) => v -> [(k, v)] -> MapWithDefault k v

    mappings Data.Mapping.MapWithDefault

    No documentation available.

  8. fromList :: forall (m :: Nat) (n :: Nat) a . (KnownNat m, KnownNat n) => [a] -> Maybe (Matrix m n a)

    matrix-static Data.Matrix.Static

    Create a matrix from a list of elements. The list must have exactly length n*m or this returns Nothing. An example:

    fromList [1..9] :: Maybe (Matrix 3 3 Int)
    Just ( 1 2 3 )
    ( 4 5 6 )
    ( 7 8 9 )
    

  9. fromList :: (Real a, Eq a) => [a] -> MedianStream a

    median-stream Data.MedianStream

    Creates a MedianStream from a list of input elements. Complexity: O(nlgn)

  10. fromList :: MultiMap m k v => [(k, Set v)] -> m k v

    monoidmap-examples Data.MonoidMap.Examples.MultiMap

    Constructs a multimap from a list of key to value set mappings. Removing empty sets from the input list does not affect the result:

    fromList ≡ fromList . filter ((/= Set.empty) . snd)
    

Page 31 of many | Previous | Next