WithFilter

scala.util.Try.WithFilter
final class WithFilter(p: T => Boolean)

We need a whole WithFilter class to honor the "doesn't create a new collection" contract even though it seems unlikely to matter much in a collection with max size 1.

Attributes

Source
Try.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def flatMap[U](f: T => Try[U]): Try[U]

Attributes

Source
Try.scala
def foreach[U](f: T => U): Unit

Attributes

Source
Try.scala
def map[U](f: T => U): Try[U]

Attributes

Source
Try.scala
def withFilter(q: T => Boolean): WithFilter

Attributes

Source
Try.scala