Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. identifier :: Parser Var

    dhall Dhall.Parser.Token

    Parse an identifier (i.e. a variable or built-in) Variables can have an optional index to disambiguate shadowed variables This corresponds to the identifier rule from the official grammar

  2. id' :: Expr -> Expr

    express Data.Express.Fixtures

    Constructs an application of id as an Expr. Only works for Int, Bool, Char, String, [Int], [Bool].

    > id' yy
    id yy :: Int
    
    > id' one
    id 1 :: Int
    
    > evl (id' one) :: Int
    1
    
    > id' pp
    id p :: Bool
    
    > id' false
    id' False :: Bool
    
    > evl (id' true) :: Bool
    True :: Bool
    

  3. idBool :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  4. idBools :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  5. idChar :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  6. idE :: Expr

    express Data.Express.Fixtures

    The function id for the Int type encoded as an Expr. (See also id'.)

    > idE :$ xx
    id x :: Int
    
    > idE :$ zero
    id 0 :: Int
    
    > evaluate $ idE :$ zero :: Maybe Int
    Just 0
    

  7. idInt :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  8. idInts :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  9. idString :: Expr

    express Data.Express.Fixtures

    The function id encoded as an Expr. (cf. id')

  10. identHLexemes :: String -> [Lexeme]

    generic-data Generic.Data.Internal.Read

    No documentation available.

Page 294 of many | Previous | Next