object Determine
- Alphabetic
- By Inheritance
- Determine
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
reduce[A](toReduce: Iterable[Determine[A]]): Determine[Iterable[A]]
Given a collection of values that may be determined, returns a collection that is determined if and only if all values in the original collection are determined.
Given a collection of values that may be determined, returns a collection that is determined if and only if all values in the original collection are determined.
- A
The type of the wrapped value.
- toReduce
The collection of possibly determined values.
- returns
The resulting, possibly determined collection.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
zip[A1, A2, A3, A4](a1: Determine[A1], a2: Determine[A2], a3: Determine[A3], a4: Determine[A4]): Determine[(A1, A2, A3, A4)]
Given a four values that may be determined, returns a tuple that is determined if and only if all given values are determined.
Given a four values that may be determined, returns a tuple that is determined if and only if all given values are determined.
- A1
The type of the first wrapped value.
- A2
The type of the second wrapped value.
- A3
The type of the third wrapped value.
- A4
The type of the fourth wrapped value.
- a1
The first of the possibly determined values.
- a2
The first of the possibly determined values.
- a3
The first of the possibly determined values.
- a4
The first of the possibly determined values.
- returns
The resulting, possibly determined tuple of the three values.
-
def
zip[A1, A2, A3](a1: Determine[A1], a2: Determine[A2], a3: Determine[A3]): Determine[(A1, A2, A3)]
Given a three values that may be determined, returns a tuple that is determined if and only if all given values are determined.
Given a three values that may be determined, returns a tuple that is determined if and only if all given values are determined.
- A1
The type of the first wrapped value.
- A2
The type of the second wrapped value.
- A3
The type of the third wrapped value.
- a1
The first of the possibly determined values.
- a2
The first of the possibly determined values.
- a3
The first of the possibly determined values.
- returns
The resulting, possibly determined tuple of the three values.