Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. PassportErrorSourceReverseSide :: PassportErrorSource

    telegram-bot-api Telegram.Bot.API.Types.PassportElementError

    No documentation available.

  2. rotationsortReverse :: Ord a => [a] -> [a]

    tensort Data.Tensort.Subalgorithms.Rotationsort

    Takes a list and returns a sorted list using a Reverse Rotationsort algorithm. I was having some issues with the swaps for larger input lists, so for now this function is only implemented for lists of length 3 or less.

    Examples

    >>> rotationsortReverse ([1,3,2] :: [Int])
    [1,2,3]
    
    >>> rotationsortReverse ([(3, 1), (1, 3), (2, 2)] :: [(Int, Int)])
    [(1,3),(2,2),(3,1)]
    

  3. rotationsortReverseAmbi :: Ord a => [a] -> [a]

    tensort Data.Tensort.Subalgorithms.Rotationsort

    Takes a list and returns a sorted list using an Ambidextrous Reverse Rotationsort algorithm. I was having some issues with the swaps for larger input lists, so for now this function is only implemented for lists of length 3 or less.

    Examples

    >>> rotationsortReverseAmbi ([1,3,2] :: [Int])
    [1,2,3]
    
    >>> rotationsortReverseAmbi ([(3, 1), (1, 3), (2, 2)] :: [(Int, Int)])
    [(1,3),(2,2),(3,1)]
    

  4. _TB_REVERSE :: Word16

    termbox-bindings-c Termbox.Bindings.C

    No documentation available.

  5. _TB_REVERSE :: Tb_attrs

    termbox-bindings-hs Termbox.Bindings.Hs

    No documentation available.

  6. mreverse :: forall (v :: Type -> Type) s a . MRotcev v s a -> MRotcev v s a

    vector-rotcev Data.Vector.Rotcev

    Reverse a mutable vector in O(1) time and space.

  7. c'YGFlexDirectionColumnReverse :: Num a => a

    yoga Bindings.Yoga.Enums

    No documentation available.

  8. c'YGFlexDirectionRowReverse :: Num a => a

    yoga Bindings.Yoga.Enums

    No documentation available.

  9. c'YGWrapWrapReverse :: Num a => a

    yoga Bindings.Yoga.Enums

    No documentation available.

  10. yieldToReverseList :: forall a (es :: Effects) r . (forall (e :: Effects) . () => Stream a e -> Eff (e :& es) r) -> Eff es ([a], r)

    bluefin Bluefin.Stream

    This is more efficient than yieldToList because it gathers the elements into a stack in reverse order. yieldToList then reverses that stack.

    >>> runPureEff $ yieldToReverseList $ \y -> do
    yield y 1
    yield y 2
    yield y 100
    ([100,2,1], ())
    

Page 77 of many | Previous | Next