Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. reverse :: ListLike full item => full -> full

    ListLike Data.ListLike

    Reverse the elements in a list.

  2. reverse :: ListLike full item => full -> full

    ListLike Data.ListLike.Base

    Reverse the elements in a list.

  3. reverse :: T -> T

    alsa-seq Sound.ALSA.Sequencer.Connect

    No documentation available.

  4. reverse :: [a] -> [a]

    basic-prelude BasicPrelude

    reverse xs returns the elements of xs in reverse order. xs must be finite.

    Laziness

    reverse is lazy in its elements.
    >>> head (reverse [undefined, 1])
    1
    
    >>> reverse (1 : 2 : undefined)
    *** Exception: Prelude.undefined
    

    Examples

    >>> reverse []
    []
    
    >>> reverse [42]
    [42]
    
    >>> reverse [2,5,7]
    [7,5,2]
    
    >>> reverse [1..]
    * Hangs forever *
    

  5. reverse :: Reversible t => t a -> t a

    brick Brick.Widgets.List

    No documentation available.

  6. reverse :: Unfoldr a -> Unfoldr a

    deferred-folds DeferredFolds.Unfoldr

    Reverse the order. Use with care, because it requires to allocate all elements.

  7. reverse :: [a] -> [a]

    ghc-lib-parser GHC.Prelude.Basic

    reverse xs returns the elements of xs in reverse order. xs must be finite.

    Laziness

    reverse is lazy in its elements.
    >>> head (reverse [undefined, 1])
    1
    
    >>> reverse (1 : 2 : undefined)
    *** Exception: Prelude.undefined
    

    Examples

    >>> reverse []
    []
    
    >>> reverse [42]
    [42]
    
    >>> reverse [2,5,7]
    [7,5,2]
    
    >>> reverse [1..]
    * Hangs forever *
    

  8. reverse :: (Recursive (->) t (XNor a), Steppable (->) u (XNor a)) => t -> u

    yaya Yaya.Applied

    No documentation available.

  9. reverse :: (Contiguous arr, Element arr a) => arr a -> arr a

    contiguous Data.Primitive.Contiguous

    Reverse the elements of an array.

  10. reverse :: Sequential c => c -> c

    foundation Foundation

    Reverse a collection

Page 9 of many | Previous | Next