Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
IdentConsNonDigit :: Ident -> IdentNonDigit -> Identlanguage-c99 Language.C99.AST No documentation available.
-
language-c99 Language.C99.AST No documentation available.
IdentListBase :: Ident -> IdentListlanguage-c99 Language.C99.AST No documentation available.
IdentListCons :: IdentList -> Ident -> IdentListlanguage-c99 Language.C99.AST No documentation available.
-
language-c99 Language.C99.AST No documentation available.
IdentNonDigit :: NonDigit -> IdentNonDigitlanguage-c99 Language.C99.AST No documentation available.
IdentNonDigitUniv :: UnivCharName -> IdentNonDigitlanguage-c99 Language.C99.AST No documentation available.
IdentifierToken :: TokenPosn -> String -> [CommentAnnotation] -> Tokenlanguage-javascript Language.JavaScript.Parser.Lexer Identifier.
module Language.Nix.
Identifier No documentation available.
-
language-nix Language.Nix.Identifier Identifiers in Nix are essentially strings. They can be constructed (and viewed) with the ident isomorphism. For the sake of convenience, Identifiers are an instance of the IsString class. Reasonable people restrict themselves to identifiers of the form [a-zA-Z_][a-zA-Z0-9_'-]*, because these don't need quoting. The methods of the Text class can be used to parse and pretty-print an identifier with proper quoting:
>>> pPrint (ident # "test") test >>> pPrint (ident # "foo.bar") "foo.bar"
\str -> Just (ident # str) == parseM "Ident" (quote str)
\i -> Just (i :: Identifier) == parseM "Ident" (prettyShow i)