Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. Fixpoint :: forall a (m :: Type -> Type) . (a -> m a) -> Fixpoint m a

    polysemy Polysemy.Internal.Fixpoint

    No documentation available.

  2. cliFunFixity :: ConLiftInfo -> Maybe Fixity

    polysemy Polysemy.Internal.TH.Common

    Fixity of function used as an operator

  3. type RunNodeFixed context = RunNodeWithStatus context Status Seq LogEntry Bool

    sandwich Test.Sandwich.Internal

    No documentation available.

  4. fixRunTree :: RunNode context -> STM (RunNodeFixed context)

    sandwich Test.Sandwich.Internal

    No documentation available.

  5. optFixedRoot :: CommandLineOptions a -> Maybe String

    sandwich Test.Sandwich.Misc

    No documentation available.

  6. TestArtifactsFixedDirectory :: FilePath -> TestArtifactsDirectory

    sandwich Test.Sandwich.Options

    Use the test artifacts directory at the given path, creating it if necessary.

  7. testRootFixed :: TestArtifactsDirectory -> FilePath

    sandwich Test.Sandwich.Options

    No documentation available.

  8. lineIdPrefix :: FormatOptions -> !Text

    skylighting-core Skylighting.Types

    Prefix for id attributes on lines

  9. commonPrefix :: [FilePath] -> FilePath

    system-filepath Filesystem.Path

    Find the greatest common prefix between a list of FilePaths.

  10. stripPrefix :: FilePath -> FilePath -> Maybe FilePath

    system-filepath Filesystem.Path

    Remove a prefix from a path.

    stripPrefix "/foo/" "/foo/bar/baz.txt" == Just "bar/baz.txt"
    stripPrefix "/foo/" "/bar/baz.txt" == Nothing
    
    This function operates on logical prefixes, rather than by counting characters. The prefix "/foo/bar/baz" is interpreted the path ("/foo/bar/", "baz"), and will be stripped accordingly:
    stripPrefix "/foo/bar/baz" "/foo/bar/baz/qux" == Nothing
    stripPrefix "/foo/bar/baz" "/foo/bar/baz.txt" == Just ".txt"
    
    Since: 0.4.1

Page 232 of many | Previous | Next