Hoogle Search

Within LTS Haskell 23.24 (ghc-9.8.4)

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

  1. foo :: a

    doctest-parallel It.Foo

    >>> :t 'a'
    'a' :: Char
    
    >>> "foo"
    "foo"
    
    >>> length it
    3
    
    >>> it * it
    9
    
    >>> :t it
    it :: Int
    

  2. foo :: a

    doctest-parallel It.Setup

    >>> it * it
    1764
    

  3. foo :: Num a => a

    doctest-parallel ModuleIsolation.TestA

    >>> (\case { 3 -> 5; 7 -> 9}) 3
    5
    

  4. foo :: a

    doctest-parallel ModuleOptions.Foo

    >>> :t 'a'
    'a' :: Char
    
    >>> "foo"
    "foo"
    
    >>> length it
    3
    
    >>> it * it
    9
    
    >>> :t it
    it :: Int
    

  5. foo :: Int -> Int

    doctest-parallel NonExposedModule.Exposed

    >>> import NonExposedModule.Exposed (foo)
    
    >>> foo 7
    14
    

  6. foo :: a

    doctest-parallel PropertyBool.Foo

    True
    

  7. foo :: a

    doctest-parallel PropertyBoolWithTypeSignature.Foo

    True :: Bool
    

  8. foo :: a

    doctest-parallel PropertyFailing.Foo

    abs x == x
    

  9. foo :: a

    doctest-parallel PropertyImplicitlyQuantified.Foo

    abs x == abs (abs x)
    

  10. foo :: a

    doctest-parallel PropertyQuantified.Foo

    \x -> abs x == abs (abs x)
    

Page 1 of many | Next