rebind
rebind copied to clipboard
Rebind is a Scala port/remake of the Haskell retry library.
Results
3
rebind issues
Sort by
recently updated
recently updated
newest added
I'll just leave this here.. ``` scala /** Laws? */ trait SumElim[F[_, _], G[_], A] { def elim[B, C](f: F[A, B])(left: A => C, right: B => C): G[C] }...