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.
toList :: Storable a => Vector a -> [a]rebase Rebase.Data.Vector.Storable No documentation available.
fromList :: Unbox a => [a] -> Vector arebase Rebase.Data.Vector.Unboxed No documentation available.
fromListN :: Unbox a => Int -> [a] -> Vector arebase Rebase.Data.Vector.Unboxed No documentation available.
toList :: Unbox a => Vector a -> [a]rebase Rebase.Data.Vector.Unboxed No documentation available.
toList :: GenericTextZipper a => a -> [Char]text-zipper Data.Text.Zipper.Generic No documentation available.
fromList :: Ord k => [(k, v)] -> OMap k vtree-diff Data.TreeDiff.OMap >>> fromList [('g', "gamma"), ('b', "beta"), ('a', "alpha")] fromList [('g',"gamma"),('b',"beta"),('a',"alpha")]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")]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")]streamToList :: Monad m => StreamT m a -> m [a]automaton Data.Stream Run a stream, collecting the outputs in a lazy, infinite list.
millisToDiffTime :: Integer -> DiffTimeavro Data.Avro.Internal.Time No documentation available.