Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. fromList :: (Ord a, SymVal a) => [a] -> SSet a

    sbv Data.SBV.Set

    Conversion from a list.

    >>> fromList ([] :: [Integer])
    {} :: {SInteger}
    
    >>> fromList [1,2,3]
    {1,2,3} :: {SInteger}
    
    >>> fromList [5,5,5,12,12,3]
    {3,5,12} :: {SInteger}
    

  2. fromList :: Unbox a => [a] -> Array a

    streamly-core Streamly.Data.Array

    Create an Array from a list. The list must be of finite size.

  3. fromList :: [a] -> Array a

    streamly-core Streamly.Data.Array.Generic

    No documentation available.

  4. fromList :: (MonadIO m, Unbox a) => [a] -> m (MutArray a)

    streamly-core Streamly.Data.MutArray

    Create a MutArray from a list. The list must be of finite size.

  5. fromList :: MonadIO m => [a] -> m (MutArray a)

    streamly-core Streamly.Data.MutArray.Generic

    No documentation available.

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

    streamly-core Streamly.Data.Stream

    Construct a stream from a list of pure values.

  7. fromList :: forall (m :: Type -> Type) a . Applicative m => Unfold m [a] a

    streamly-core Streamly.Data.Unfold

    Convert a list of pure values to a Stream

  8. fromList :: Unbox a => [a] -> Array a

    streamly-core Streamly.Internal.Data.Array

    Create an Array from a list. The list must be of finite size.

  9. fromList :: [a] -> Array a

    streamly-core Streamly.Internal.Data.Array.Generic

    No documentation available.

  10. fromList :: (MonadIO m, Unbox a) => [a] -> m (MutArray a)

    streamly-core Streamly.Internal.Data.MutArray

    Create a MutArray from a list. The list must be of finite size.

Page 25 of many | Previous | Next