System.Console.Haskeline

The plain source file for module System.Console.Haskeline is not available.
module System.Console.Haskeline where

data Settings m
  = Settings {complete :: CompletionFunc m,
              historyFile :: Maybe FilePath,
              autoAddHistory :: Bool}

type CompletionFunc m =
  (String, String) -> m (String, [Completion])

data Completion
  = Completion {replacement :: String,
                display :: String,
                isFinished :: Bool}

Index

(HTML for this module was generated on 2013-09-19. About the conversion tool.)