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

urwerk.source.Signal.scala Maven / Gradle / Ivy

The newest version!
package urwerk.source

enum Signal[+A]:
  case Complete extends Signal
  case Error(error: Throwable) extends Signal[A]
  case Next(val next: A) extends Signal[A]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy