All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.atnos.eff.WriterEffect.scala Maven / Gradle / Ivy

The newest version!
package org.atnos.eff

/**
 * Effect for logging values alongside computations
 *
 * Compared to traditional Writer monad which accumulates values by default
 * this effect can be interpreted in different ways:
 *
 *  - log values to the console or to a file as soon as they are produced
 *  - accumulate values in a list
 *
 */
trait WriterEffect extends WriterCreation with WriterInterpretation

object WriterEffect extends WriterEffect




© 2015 - 2024 Weber Informatics LLC | Privacy Policy