Fs.AppendFile
eff AppendFileSourceAn effect used to append a string to a file.
Use the AppendFile.runWithFileWrite handler.
Operations
def append(data: { str = String }, f: String): Result[IoError, Unit] \ AppendFile
SourceAppends str to the given file f.
Creates the file f if it does not exist.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - AppendFile) + FileWrite
SourceHandles the AppendFile effect of the given function f using the FileWrite effect.