Fs.WriteBytes
eff WriteBytesSourceAn effect used to write bytes to a file.
Use the WriteBytes.runWithFileWrite handler.
Operations
def writeBytes(data: Vector[Int8], f: String): Result[IoError, Unit] \ WriteBytes
SourceWrites data to the given file f.
Creates file f if it does not exist. Overwrites it if it exists.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - WriteBytes) + FileWrite
SourceHandles the WriteBytes effect of the given function f using the FileWrite effect.