Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. PersistText :: Text -> PersistValue

    persistent Database.Persist.Types

    No documentation available.

  2. PersistTimeOfDay :: TimeOfDay -> PersistValue

    persistent Database.Persist.Types

    No documentation available.

  3. PersistUTCTime :: UTCTime -> PersistValue

    persistent Database.Persist.Types

    No documentation available.

  4. data PersistUpdate

    persistent Database.Persist.Types

    No documentation available.

  5. data PersistValue

    persistent Database.Persist.Types

    A raw value which can be stored in any backend and can be marshalled to and from a PersistField.

  6. data Pattern

    Glob System.FilePath.Glob

    An abstract data type representing a compiled pattern. Note that the Eq instance cannot tell you whether two patterns behave in the same way; only whether they compile to the same Pattern. For instance, compile "x" and compile "[x]" may or may not compare equal, though a match will behave the exact same way no matter which Pattern is used.

  7. module System.FilePath.Glob.Primitive

    A number of primitives from which complete Patterns may be constructed. Using this together with the functions provided by the Monoid instance of Pattern allows for direct manipulation of Patterns beyond what can be done with just the compile family of functions. And of course you don't have to go via Strings if you use these.

  8. module OsPath.Internal.Posix

    Internal types and functions.

  9. newtype Path b t

    path OsPath.Internal.Posix

    Path of some base and type. The type variables are:

    • b — base, the base location of the path; absolute or relative.
    • t — type, whether file or directory.
    Internally it is a PosixPath, which can be of two formats only:
    1. File format: file.txt, foo/bar.txt, /foo/bar.txt
    2. Directory format: foo/, /foo/bar/
    All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.

  10. Path :: PosixPath -> Path b t

    path OsPath.Internal.Posix

    No documentation available.

Page 186 of many | Previous | Next