object collection extends CollectionInference
- Alphabetic
- By Inheritance
- collection
- CollectionInference
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- type Contains[U] = Not[Forall[Not[Equal[U]]]]
Predicate that checks if a
Traversablecontains a value equal toU. - final case class Count[PA, PC](pa: PA, pc: PC) extends Product with Serializable
Predicate that counts the number of elements in a
Traversablewhich satisfy the predicatePAand passes the result to the numeric predicatePC. - final case class Empty() extends Product with Serializable
Predicate that checks if a
Traversableis empty. - type Exists[P] = Not[Forall[Not[P]]]
Predicate that checks if the predicate
Pholds for some elements of aTraversable. - final case class Forall[P](p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for all elements of aTraversable. - final case class Head[P](p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for the first element of aTraversable. - final case class Index[N, P](n: N, p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for the element at indexNof a sequence. - final case class Init[P](p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for all but the last element of aTraversable. - final case class Last[P](p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for the last element of aTraversable. - type MaxSize[N] = Size[Closed[_0, N]]
Predicate that checks if the size of a
Traversableis less than or equal toN. - type MinSize[N] = Size[GreaterEqual[N]]
Predicate that checks if the size of a
Traversableis greater than or equal toN. - type NonEmpty = Not[Empty]
Predicate that checks if a
Traversableis not empty. - final case class Size[P](p: P) extends Product with Serializable
Predicate that checks if the size of a
Traversablesatisfies the predicateP. - final case class Tail[P](p: P) extends Product with Serializable
Predicate that checks if the predicate
Pholds for all but the first element of aTraversable.
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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit def existsInference[A, B](implicit p1: ==>[A, B]): ==>[Exists[A], Exists[B]]
- Definition Classes
- CollectionInference
- implicit def existsNonEmptyInference[P]: ==>[Exists[P], NonEmpty]
- Definition Classes
- CollectionInference
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- implicit def headExistsInference[P]: ==>[Head[P], Exists[P]]
- Definition Classes
- CollectionInference
- implicit def headInference[A, B](implicit p1: ==>[A, B]): ==>[Head[A], Head[B]]
- Definition Classes
- CollectionInference
- implicit def indexExistsInference[N, P]: ==>[Index[N, P], Exists[P]]
- Definition Classes
- CollectionInference
- implicit def indexInference[N, A, B](implicit p1: ==>[A, B]): ==>[Index[N, A], Index[N, B]]
- Definition Classes
- CollectionInference
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- implicit def lastExistsInference[P]: ==>[Last[P], Exists[P]]
- Definition Classes
- CollectionInference
- implicit def lastInference[A, B](implicit p1: ==>[A, B]): ==>[Last[A], Last[B]]
- Definition Classes
- CollectionInference
- 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()
- implicit def sizeInference[A, B](implicit p1: ==>[A, B]): ==>[Size[A], Size[B]]
- Definition Classes
- CollectionInference
- 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(classOf[java.lang.InterruptedException])
- 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()
- object Count extends Serializable
- object Empty extends Serializable
- object Forall extends Serializable
- object Head extends Serializable
- object Index extends Serializable
- object Init extends Serializable
- object Last extends Serializable
- object Size extends Serializable
- object Tail extends Serializable