|
Scala example source code file (CatchableSyntax.scala)
The CatchableSyntax.scala Scala example source code
package scalaz
package syntax
/** Wraps a value `self` and provides methods related to `Catchable` */
final class CatchableOps[F[_],A] private[syntax](val self: F[A])(implicit val F: Catchable[F]) extends Ops[F[A]] {
////
def attempt: F[Throwable \/ A] = F.attempt(self)
////
}
sealed trait ToCatchableOps0 {
implicit def ToCatchableOpsUnapply[FA](v: FA)(implicit F0: Unapply[Catchable, FA]) =
new CatchableOps[F0.M,F0.A](F0(v))(F0.TC)
}
trait ToCatchableOps extends ToCatchableOps0 {
implicit def ToCatchableOps[F[_],A](v: F[A])(implicit F0: Catchable[F]) =
new CatchableOps[F,A](v)
////
////
}
trait CatchableSyntax[F[_]] {
implicit def ToCatchableOps[A](v: F[A]): CatchableOps[F, A] = new CatchableOps[F,A](v)(CatchableSyntax.this.F)
def F: Catchable[F]
////
////
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala CatchableSyntax.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.