Hoogle Search
Within LTS Haskell 24.8 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
reverseStream :: Text -> Stream Chartext Data.Text.Internal.Fusion O(n) Converts Text into a Stream Char, but iterates backwards through the text. Properties
unstream . reverseStream = reverse
reverseIter :: Text -> Int -> Itertext Data.Text.Unsafe O(1) Iterate one step backwards through a UTF-8 array, returning the current character and the delta to add (i.e. a negative number) to give the next offset to iterate at.
reverseIterArray :: Array -> Int -> Itertext Data.Text.Unsafe No documentation available.
reverseIter_ :: Text -> Int -> Inttext Data.Text.Unsafe O(1) Iterate one step backwards through a UTF-8 array, returning the delta to add (i.e. a negative number) to give the next offset to iterate at.
reverseTopSort :: Graph -> [Vertex]containers Data.Graph reversed :: Reversing a => Iso' a alens Control.Lens.Combinators An Iso between a list, ByteString, Text fragment, etc. and its reversal.
>>> "live" ^. reversed "evil"
>>> "live" & reversed %~ ('d':) "lived"
reversed :: Reversing a => Iso' a alens Control.Lens.Iso An Iso between a list, ByteString, Text fragment, etc. and its reversal.
>>> "live" ^. reversed "evil"
>>> "live" & reversed %~ ('d':) "lived"
reversed :: AttributeValue -> Attributeblaze-html Text.Blaze.Html5.Attributes Combinator for the reversed attribute. Example:
div ! reversed "bar" $ "Hello."
Result:<div reversed="bar">Hello.</div>
reversed :: AttributeValue -> Attributeblaze-html Text.Blaze.XHtml5.Attributes Combinator for the reversed attribute. Example:
div ! reversed "bar" $ "Hello."
Result:<div reversed="bar">Hello.</div>
reverseDependencyClosure :: PackageInstalled a => PackageIndex a -> [UnitId] -> [a]Cabal Distribution.Simple.PackageIndex Takes the transitive closure of the packages reverse dependencies.
- The given PackageIds must be in the index.