Fs.WriteLines
eff WriteLinesSourceAn effect used to write lines to a file.
Use the WriteLines.runWithFileWrite handler.
Operations
def writeLines(data: { lines = List[String] }, f: String): Result[IoError, Unit] \ WriteLines
SourceWrites lines to the given file f.
Creates f if it does not exist. Overwrites it if it exists.
Definitions
def runWithFileWrite(f: Unit -> a \ ef): a \ (ef - WriteLines) + FileWrite
SourceHandles the WriteLines effect of the given function f using the FileWrite effect.