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.
PassportErrorSourceReverseSide :: PassportErrorSourcetelegram-bot-api Telegram.Bot.API.Types.PassportElementError No documentation available.
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)]
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)]
-
termbox-bindings-c Termbox.Bindings.C No documentation available.
-
termbox-bindings-hs Termbox.Bindings.Hs No documentation available.
mreverse :: forall (v :: Type -> Type) s a . MRotcev v s a -> MRotcev v s avector-rotcev Data.Vector.Rotcev Reverse a mutable vector in O(1) time and space.
c'YGFlexDirectionColumnReverse :: Num a => ayoga Bindings.Yoga.Enums No documentation available.
c'YGFlexDirectionRowReverse :: Num a => ayoga Bindings.Yoga.Enums No documentation available.
c'YGWrapWrapReverse :: Num a => ayoga Bindings.Yoga.Enums No documentation available.
-
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], ())