Scala Standard Library 2.13.1 - scala.PartialFunction (original) (raw)
trait PartialFunction[-A, +B] extends (A) => B
Ordering
- Alphabetic
- By Inheritance
Inherited
- PartialFunction
- Function1
- AnyRef
- Any
Implicitly
by UnliftOps
by any2stringadd
by StringFormat
by Ensuring
by ArrowAssoc
Hide All
Show All
Visibility
- Public
- Protected
Abstract Value Members
Concrete Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- def +(other: String): String
- def ->[B](y: B): (PartialFunction[A, B], B)
- final def ==(arg0: Any): Boolean
- def andThen[C](k: PartialFunction[B, C]): PartialFunction[A, C]
- def andThen[C](k: (B) => C): PartialFunction[A, C]
- def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) => B1): B1
- final def asInstanceOf[T0]: T0
- def clone(): AnyRef
- def compose[R](k: PartialFunction[R, A]): PartialFunction[R, B]
- def compose[A](g: (A) => A): (A) => B
- def elementWise: ElementWiseExtractor[A, B]
- def ensuring(cond: (PartialFunction[A, B]) => Boolean, msg: => Any): PartialFunction[A, B]
- def ensuring(cond: (PartialFunction[A, B]) => Boolean): PartialFunction[A, B]
- def ensuring(cond: Boolean, msg: => Any): PartialFunction[A, B]
- def ensuring(cond: Boolean): PartialFunction[A, B]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def finalize(): Unit
- def formatted(fmtstr: String): String
- final def getClass(): Class[_ <: AnyRef]
- def hashCode(): Int
- final def isInstanceOf[T0]: Boolean
- def lift: (A) => Option[B]
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- def runWith[U](action: (B) => U): (A) => Boolean
- final def synchronized[T0](arg0: => T0): T0
- def toString(): String
- def unapply(a: A): Option[B]
- def unlift: PartialFunction[A, B]
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit