Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

  1. parListOrdered :: forall (m :: Type -> Type) a . MonadAsync m => [Stream m a] -> Stream m a

    streamly Streamly.Internal.Data.Stream.Prelude

    Like parListLazy but with ordered on.

    >>> parListOrdered = Stream.parList (Stream.ordered True)
    

  2. fromList :: IsList l => [Item l] -> l

    streamly Streamly.Internal.Data.Stream.Serial

    The fromList function constructs the structure l from the given list of Item l

  3. toList :: IsList l => l -> [Item l]

    streamly Streamly.Internal.Data.Stream.Serial

    The toList function extracts a list of Item l from the structure l. It should satisfy fromList . toList = id.

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

    strict-base-types Data.Maybe.Strict

    Analogous to maybeToList in Data.Maybe.

  5. partCompareListMaybe :: Eq a => [Maybe a] -> [Maybe a] -> Maybe Ordering

    swish Data.Ord.Partial

    Part-ordering comparison on lists of Maybe values.

  6. partCompareListSubset :: Eq a => [a] -> [a] -> Maybe Ordering

    swish Data.Ord.Partial

    Part-ordering comparison on lists based on subset relationship

  7. module Data.Tensort.Utils.RandomizeList

    This module prvodies the randomizeList function, which randomizes the order of elements in sortable lists.

  8. randomizeList :: Ord a => Int -> [a] -> [a]

    tensort Data.Tensort.Utils.RandomizeList

    Takes a seed for random generation and a list and returns a new list with the same elements as the input list but in a random order.

    Examples

    >>> randomizeList 143 ([4, 8, 15, 16, 23, 42] :: [Int])
    [16,23,4,8,15,42]
    
    >>> randomizeList 143 ([(2,4),(3,8),(0,15),(1,16),(5,23),(4,42)] :: [(Int, Int)])
    [(1,16),(5,23),(2,4),(3,8),(0,15),(4,42)]
    

  9. textListToCStringArray :: [Text] -> (Ptr CString -> IO a) -> IO a

    text-misc-yj Data.Text.Foreign.MiscYj

    No documentation available.

  10. bitsList :: FiniteBits bs => bs -> [bs]

    tools-yj Data.Bits.ToolsYj

    No documentation available.

Page 226 of many | Previous | Next