Skip to content

Instantly share code, notes, and snippets.

@wjlow
Created May 28, 2018 06:11
Embed
What would you like to do?
trait Sink[A] { 
  def apply(a: A): Async[Unit]

  final def contraMap[B](f: B => A): Sink[B] = 
    b => apply(f(b))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment