Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. module SourceMap

    Generate JSON from a source mapping.

  2. data SourceMapping

    sourcemap SourceMap.Types

    The source mapping.

  3. SourceMapping :: FilePath -> !Maybe FilePath -> [Mapping] -> SourceMapping

    sourcemap SourceMap.Types

    No documentation available.

  4. smMappings :: SourceMapping -> ![Mapping]

    sourcemap SourceMap.Types

    No documentation available.

  5. type Gophermap = [GophermapEntry]

    spacecookie Network.Gopher

    No documentation available.

  6. data GophermapEntry

    spacecookie Network.Gopher

    A gophermap entry makes all values of a gopher menu item optional except for file type and description. When converting to a GopherMenuItem, appropriate default values are used.

  7. GophermapEntry :: GopherFileType -> ByteString -> Maybe GophermapFilePath -> Maybe ByteString -> Maybe Integer -> GophermapEntry

    spacecookie Network.Gopher

    file type, description, path, server name, port number

  8. gophermapToDirectoryResponse :: RawFilePath -> Gophermap -> GopherResponse

    spacecookie Network.Gopher

    Given a directory and a Gophermap contained within it, return the corresponding gopher menu response.

  9. module Network.Gopher.Util.Gophermap

    This module implements a parser for gophermap files. Example usage:

    import Network.Gopher.Util.Gophermap
    import qualified Data.ByteString as B
    import Data.Attoparsec.ByteString
    
    main = do
    file <- B.readFile "gophermap"
    print $ parseOnly parseGophermap file
    

  10. type Gophermap = [GophermapEntry]

    spacecookie Network.Gopher.Util.Gophermap

    No documentation available.

Page 1224 of many | Previous | Next