Fs.IsRegularFile
eff IsRegularFileSourceAn effect used to check if a path is a regular file.
Use the IsRegularFile.runWithFileTest handler.
Operations
def isRegularFile(f: String): Result[IoError, Bool] \ IsRegularFile
SourceReturns true if the given file f is a regular file.
Definitions
def runWithFileTest(f: Unit -> a \ ef): a \ (ef - IsRegularFile) + FileTest
SourceHandles the IsRegularFile effect of the given function f using the FileTest effect.