case object CannotDetermine extends Determine[Nothing] with Product with Serializable
A value that cannot be determined.
- Alphabetic
- By Inheritance
- CannotDetermine
- Serializable
- Product
- Equals
- Determine
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def foreach(f: (Nothing) => Unit): Unit
Applies a function to the value if it is determined.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def getOrElse[B >: Nothing](default: => B): B
Returns the value if it is determined.
Returns the value if it is determined. Otherwise, returns a given default value.
- default
The default value.
- Definition Classes
- Determine
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[B](f: (Nothing) => B): Determine[B]
Applies a function to the value if it is determined, and returns the result as a CanDetermine.
Applies a function to the value if it is determined, and returns the result as a CanDetermine. Otherwise, returns CannotDetermine
- f
The function.
- Definition Classes
- Determine
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def orElse[B >: Nothing](default: => Determine[B]): Determine[B]
Returns this Determine if it is determined.
- def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def zip[B](other: Determine[B]): Determine[(Nothing, B)]
Given another value that may be determined, returns a tuple that is determined if and only if both this and the other values are determined.
Given another value that may be determined, returns a tuple that is determined if and only if both this and the other values are determined.
- B
The type of the other possibly determined value.
- other
The other possibly determined value.
- returns
The resulting, possibly determined tuple of the two values.
- Definition Classes
- Determine
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)