Hoogle Search

Within LTS Haskell 22.18 (ghc-9.6.4)

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

  1. repeat :: a -> [a]

    base Prelude

    repeat x is an infinite list, with x the value of every element.

    >>> repeat 17
    [17,17,17,17,17,17,17,17,17...
    

  2. singleton :: a -> [a]

    base Data.List

    Produce singleton list.

    >>> singleton True
    [True]
    

  3. repeat :: a -> [a]

    base Data.List

    repeat x is an infinite list, with x the value of every element.

    >>> repeat 17
    [17,17,17,17,17,17,17,17,17...
    

  4. repeat :: a -> [a]

    base GHC.List

    repeat x is an infinite list, with x the value of every element.

    >>> repeat 17
    [17,17,17,17,17,17,17,17,17...
    

  5. singleton :: a -> [a]

    base GHC.OldList

    Produce singleton list.

    >>> singleton True
    [True]
    

  6. repeat :: a -> [a]

    base GHC.OldList

    repeat x is an infinite list, with x the value of every element.

    >>> repeat 17
    [17,17,17,17,17,17,17,17,17...
    

  7. shrinkNothing :: a -> [a]

    QuickCheck Test.QuickCheck

    Returns no shrinking alternatives.

  8. shrinkNothing :: a -> [a]

    QuickCheck Test.QuickCheck.Arbitrary

    Returns no shrinking alternatives.

  9. repeat :: a -> [a]

    amazonka-core Amazonka.Prelude

    repeat x is an infinite list, with x the value of every element.

    >>> repeat 17
    [17,17,17,17,17,17,17,17,17...
    

  10. shrinkNothing :: a -> [a]

    tasty-quickcheck Test.Tasty.QuickCheck

    Returns no shrinking alternatives.

Page 1 of many | Next