Hoogle Search
Within LTS Haskell 24.9 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
reverseBytes :: EncodingInfo -> Optionsoxlib Sound.SoxLib No documentation available.
reverseNibbles :: EncodingInfo -> Optionsoxlib Sound.SoxLib No documentation available.
reverseUnbox :: forall (m :: Type -> Type) a . (MonadIO m, Unbox a) => Stream m a -> Stream m astreamly-core Streamly.Internal.Data.Stream Like reverse but several times faster, requires an Unbox instance. O(n) space Pre-release
reversePolarities :: forall (f :: BaseType -> Type) . OrdF f => BoolMap f -> BoolMap fwhat4 What4.Expr.BoolMap Swap the polarities of the terms in the given bool map.
reverseP :: Permutation -> PermutationAgda Agda.Utils.Permutation permute (reverseP p) xs == reverse $ permute p $ reverse xs
Example: permute (reverseP (Perm 4 [1,3,0])) [x0,x1,x2,x3] == permute (Perm 4 $ map (3-) [0,3,1]) [x0,x1,x2,x3] == permute (Perm 4 [3,0,2]) [x0,x1,x2,x3] == [x3,x0,x2] == reverse [x2,x0,x3] == reverse $ permute (Perm 4 [1,3,0]) [x3,x2,x1,x0] == reverse $ permute (Perm 4 [1,3,0]) $ reverse [x0,x1,x2,x3] With reverseP, you can convert a permutation on de Bruijn indices to one on de Bruijn levels, and vice versa.reverseConcat1 :: Int -> String -> [String]aftovolio Aftovolio.Ukrainian.ReverseConcatenations Reverses many phonetic languages approach related concatenations for just one Ukrainian word. Is used internally in the reverseConcatenations.
reverseConcat2 :: Int -> String -> String -> String -> [String]aftovolio Aftovolio.Ukrainian.ReverseConcatenations No documentation available.
reverseConcatenations :: Int -> String -> Stringaftovolio Aftovolio.Ukrainian.ReverseConcatenations Reverses many phonetic languages approach related concatenations for the Ukrainian text. Is intended to be used with the text on several lines.
reverseOnto :: Chunks a -> Chunks a -> Chunks aarray-chunks Data.Chunks Variant of reverse that allows the caller to provide an initial list of chunks that the reversed chunks will be pushed onto.
>>> reverseOnto [[15],[12,4]] [[42,17,94],[6,12],[3,14]] [[3,14],[6,12],[42,17,94],[15],[12,4]]
-
cabal-install Distribution.Client.InstallPlan Return the packages in the plan that depend directly or indirectly on the given packages.