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. toList :: Storable a => Vector a -> [a]

    rebase Rebase.Data.Vector.Storable

    No documentation available.

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

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  3. fromListN :: Unbox a => Int -> [a] -> Vector a

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  4. toList :: Unbox a => Vector a -> [a]

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  5. toList :: GenericTextZipper a => a -> [Char]

    text-zipper Data.Text.Zipper.Generic

    No documentation available.

  6. fromList :: Ord k => [(k, v)] -> OMap k v

    tree-diff Data.TreeDiff.OMap

    >>> fromList [('g', "gamma"), ('b', "beta"), ('a', "alpha")]
    fromList [('g',"gamma"),('b',"beta"),('a',"alpha")]
    

  7. toAscList :: OMap k v -> [(k, v)]

    tree-diff Data.TreeDiff.OMap

    >>> toAscList $ fromList [('a', "alpha"), ('b', "beta"), ('g', "gamma")]
    [('a',"alpha"),('b',"beta"),('g',"gamma")]
    
    >>> toAscList $ fromList [('g', "gamma"), ('b', "beta"), ('a', "alpha")]
    [('a',"alpha"),('b',"beta"),('g',"gamma")]
    

  8. toList :: OMap k v -> [(k, v)]

    tree-diff Data.TreeDiff.OMap

    O(n log n). List in creation order. Doesn't respect Eq instance.

    >>> toList $ fromList [('a', "alpha"), ('b', "beta"), ('g', "gamma")]
    [('a',"alpha"),('b',"beta"),('g',"gamma")]
    
    >>> toList $ fromList [('g', "gamma"), ('b', "beta"), ('a', "alpha")]
    [('g',"gamma"),('b',"beta"),('a',"alpha")]
    

  9. streamToList :: Monad m => StreamT m a -> m [a]

    automaton Data.Stream

    Run a stream, collecting the outputs in a lazy, infinite list.

  10. millisToDiffTime :: Integer -> DiffTime

    avro Data.Avro.Internal.Time

    No documentation available.

Page 141 of many | Previous | Next