Fs.AppendBytes
eff AppendBytesSourceAn effect used to append bytes to a file.
Use the AppendBytes.runWithFileWrite handler.
Operations
def appendBytes(data: Vector[Int8], f: String): Result[IoError, Unit] \ AppendBytes
SourceAppends data to the given file f.
Creates the file f if it does not exist.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - AppendBytes) + FileWrite
SourceHandles the AppendBytes effect of the given function f using the FileWrite effect.