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.
Fixpoint :: forall a (m :: Type -> Type) . (a -> m a) -> Fixpoint m apolysemy Polysemy.Internal.Fixpoint No documentation available.
cliFunFixity :: ConLiftInfo -> Maybe Fixitypolysemy Polysemy.Internal.TH.Common Fixity of function used as an operator
type
RunNodeFixed context = RunNodeWithStatus context Status Seq LogEntry Boolsandwich Test.Sandwich.Internal No documentation available.
fixRunTree :: RunNode context -> STM (RunNodeFixed context)sandwich Test.Sandwich.Internal No documentation available.
optFixedRoot :: CommandLineOptions a -> Maybe Stringsandwich Test.Sandwich.Misc No documentation available.
TestArtifactsFixedDirectory :: FilePath -> TestArtifactsDirectorysandwich Test.Sandwich.Options Use the test artifacts directory at the given path, creating it if necessary.
testRootFixed :: TestArtifactsDirectory -> FilePathsandwich Test.Sandwich.Options No documentation available.
lineIdPrefix :: FormatOptions -> !Textskylighting-core Skylighting.Types Prefix for id attributes on lines
commonPrefix :: [FilePath] -> FilePathsystem-filepath Filesystem.Path Find the greatest common prefix between a list of FilePaths.
stripPrefix :: FilePath -> FilePath -> Maybe FilePathsystem-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