Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
readDirStream :: DirStream -> IO PosixPathunix System.Posix.Directory.PosixPath readDirStream dp calls readdir to obtain the next directory entry (struct dirent) for the open directory stream dp, and returns the d_name member of that structure. Note that this function returns an empty filepath if the end of the directory stream is reached. For a safer alternative use readDirStreamMaybe.
readDirStreamMaybe :: DirStream -> IO (Maybe PosixPath)unix System.Posix.Directory.PosixPath readDirStreamMaybe dp calls readdir to obtain the next directory entry (struct dirent) for the open directory stream dp. It returns the d_name member of that structure wrapped in a Just d_name if an entry was read and Nothing if the end of the directory stream was reached.
readSymbolicLink :: FilePath -> IO FilePathunix System.Posix.Files Reads the FilePath pointed to by the symbolic link and returns it. Note: calls readlink.
readSymbolicLink :: RawFilePath -> IO RawFilePathunix System.Posix.Files.ByteString Reads the RawFilePath pointed to by the symbolic link and returns it. Note: calls readlink.
readSymbolicLink :: PosixPath -> IO PosixPathunix System.Posix.Files.PosixString Reads the PosixPath pointed to by the symbolic link and returns it. Note: calls readlink.
readerAbort :: ParseError -> ReadM aoptparse-applicative Options.Applicative Abort option reader by exiting with a ParseError.
readerError :: String -> ReadM aoptparse-applicative Options.Applicative Abort option reader by exiting with an error message.
readerAbort :: ParseError -> ReadM aoptparse-applicative Options.Applicative.Builder Abort option reader by exiting with a ParseError.
readerError :: String -> ReadM aoptparse-applicative Options.Applicative.Builder Abort option reader by exiting with an error message.
readerAbort :: ParseError -> ReadM aoptparse-applicative Options.Applicative.Types Abort option reader by exiting with a ParseError.