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

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

The newest version!
package org.atnos.eff

/** support trait for folding values while possibly keeping some internal state */
trait RightFold[A, B] {
  type S
  val init: S
  def fold(a: A, s: S): S
  def finalize(s: S): B
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy