Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. Proxy :: Proxy (t :: k)

    foundation Foundation

    No documentation available.

  2. class Eq ty => PrimType ty

    foundation Foundation.Array

    Represent the accessor for types that can be stored in the UArray and MUArray. Types need to be a instance of storable and have fixed sized.

  3. Prop :: Gen PropertyTestArg -> Property

    foundation Foundation.Check

    No documentation available.

  4. Property :: forall prop . IsProperty prop => String -> prop -> Test

    foundation Foundation.Check

    No documentation available.

  5. data Property

    foundation Foundation.Check

    No documentation available.

  6. data PropertyCheck

    foundation Foundation.Check

    The type of check this test did for a property

  7. data Ptr a

    foundation Foundation.Class.Storable

    A value of type Ptr a represents a pointer to an object, or an array of objects, which may be marshalled to or from Haskell values of type a. The type a will often be an instance of class Storable which provides the marshalling operations. However this is not essential, and you can provide your own operations to access the pointer. For example you might write small foreign functions to get or set the fields of a C struct.

  8. module Foundation.Parser

    The current implementation is mainly, if not copy/pasted, inspired from memory's Parser. Foundation Parser makes use of the Foundation's Collection and Sequential classes to allow you to define generic parsers over any Sequential of inpu. This way you can easily implements parsers over LString, String.

    flip parseOnly "[email protected]" $ do
    EmailAddress
    <$> (takeWhile ((/=) '@' <*  element '@')
    <*> takeAll
    

  9. data ParseError input

    foundation Foundation.Parser

    common parser error definition

  10. ParseFailed :: ParseError input -> Result input result

    foundation Foundation.Parser

    the parser failed with the given ParserError

Page 619 of many | Previous | Next