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.

  1. reverseStream :: Text -> Stream Char

    text Data.Text.Internal.Fusion

    O(n) Converts Text into a Stream Char, but iterates backwards through the text. Properties

    unstream . reverseStream = reverse
    

  2. reverseIter :: Text -> Int -> Iter

    text 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.

  3. reverseIterArray :: Array -> Int -> Iter

    text Data.Text.Unsafe

    No documentation available.

  4. reverseIter_ :: Text -> Int -> Int

    text 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.

  5. reverseTopSort :: Graph -> [Vertex]

    containers Data.Graph

    Reverse ordering of topSort. See note in topSort.

  6. reversed :: Reversing a => Iso' a a

    lens Control.Lens.Combinators

    An Iso between a list, ByteString, Text fragment, etc. and its reversal.

    >>> "live" ^. reversed
    "evil"
    
    >>> "live" & reversed %~ ('d':)
    "lived"
    

  7. reversed :: Reversing a => Iso' a a

    lens Control.Lens.Iso

    An Iso between a list, ByteString, Text fragment, etc. and its reversal.

    >>> "live" ^. reversed
    "evil"
    
    >>> "live" & reversed %~ ('d':)
    "lived"
    

  8. reversed :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the reversed attribute. Example:

    div ! reversed "bar" $ "Hello."
    
    Result:
    <div reversed="bar">Hello.</div>
    

  9. reversed :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the reversed attribute. Example:

    div ! reversed "bar" $ "Hello."
    
    Result:
    <div reversed="bar">Hello.</div>
    

  10. reverseDependencyClosure :: PackageInstalled a => PackageIndex a -> [UnitId] -> [a]

    Cabal Distribution.Simple.PackageIndex

    Takes the transitive closure of the packages reverse dependencies.

Page 23 of many | Previous | Next