Fs.IsWritable
eff IsWritableSourceAn effect used to check if a file is writable.
Use the IsWritable.runWithFilePermission handler.
Operations
def isWritable(f: String): Result[IoError, Bool] \ IsWritable
SourceReturns true if the given file f is writable.
Definitions
def runWithFilePermission(f: Unit -> a \ ef): a \ (ef - IsWritable) + FilePermission
SourceHandles the IsWritable effect of the given function f using the FilePermission effect.