Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. pstateTabWidth :: PosState s -> Pos

    megaparsec Text.Megaparsec.State

    Tab width to use for column calculation

  2. isWideChar :: Char -> Bool

    megaparsec Text.Megaparsec.Unicode

    Determine whether the given Char is “wide”, that is, whether it spans 2 columns instead of one.

  3. hHideCursor :: Handle -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  4. hHyperlinkWithId :: Handle -> String -> String -> String -> IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  5. hideCursor :: IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  6. hideCursorCode :: String

    ansi-terminal System.Console.ANSI

    No documentation available.

  7. hyperlinkWithId :: String -> String -> String -> IO ()

    ansi-terminal System.Console.ANSI

    Introduce a hyperlink with an identifier for the link. Some terminals support an identifier, so that hyperlinks with the same identifier are treated as connected.

  8. hyperlinkWithIdCode :: String -> String -> String -> String

    ansi-terminal System.Console.ANSI

    Code to introduce a hyperlink with an identifier for the link. Some terminals support an identifier, so that hyperlinks with the same identifier are treated as connected.

  9. listFilesInside :: (FilePath -> IO Bool) -> FilePath -> IO [FilePath]

    extra Extra

    Like listFilesRecursive, but with a predicate to decide where to recurse into. Typically directories starting with . would be ignored. The initial argument directory will have the test applied to it.

    listTest (listFilesInside $ pure . not . isPrefixOf "." . takeFileName)
    ["bar.txt","foo" </> "baz.txt",".foo" </> "baz2.txt", "zoo"] ["bar.txt","zoo","foo" </> "baz.txt"]
    listTest (listFilesInside $ const $ pure False) ["bar.txt"] []
    

  10. listFilesInside :: (FilePath -> IO Bool) -> FilePath -> IO [FilePath]

    extra System.Directory.Extra

    Like listFilesRecursive, but with a predicate to decide where to recurse into. Typically directories starting with . would be ignored. The initial argument directory will have the test applied to it.

    listTest (listFilesInside $ pure . not . isPrefixOf "." . takeFileName)
    ["bar.txt","foo" </> "baz.txt",".foo" </> "baz2.txt", "zoo"] ["bar.txt","zoo","foo" </> "baz.txt"]
    listTest (listFilesInside $ const $ pure False) ["bar.txt"] []
    

Page 410 of many | Previous | Next