We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41daa2a commit c169bd1Copy full SHA for c169bd1
src/main/scala/util/retry/blocking/Retry.scala
@@ -29,8 +29,8 @@ import scala.util.control.NonFatal
29
*/
30
sealed trait Retry[+T] {
31
/**
32
- * Returns `true` if the `Retry` is a `Failure` otherwise it returns `false`.
33
- */
+ * Returns the result by mapping f to the current value of Success or a Failure if the result is Failure
+ */
34
def flatMap[S](f: T => Retry[S]): Retry[S]
35
36
0 commit comments