trait NonEmptyOps[+A, CC[+_], EC[+_]] extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- NonEmptyOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def collect[B](pf: PartialFunction[A, B]): EC[B]
- abstract def exists(p: (A) => Boolean): Boolean
- abstract def filter(p: (A) => Boolean): EC[A]
- abstract def filterNot(p: (A) => Boolean): EC[A]
- abstract def find(p: (A) => Boolean): Option[A]
- abstract def foldLeft[B](z: B)(op: (B, A) => B): B
- abstract def forall(p: (A) => Boolean): Boolean
- abstract def grouped(size: Int): Iterator[CC[A]]
- abstract def head: A
- abstract def init: EC[A]
- abstract def iterator: Iterator[A]
- abstract def last: A
- abstract def map[B](f: (A) => B): CC[B]
- abstract def reduce[B >: A](op: (B, B) => B): B
- abstract def tail: EC[A]
- abstract def zip[B](that: CC[B])(implicit zippable: Zippable[A, B]): CC[Out]
- abstract def zipWithIndex: CC[(A, Int)]
Concrete 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]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- 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()
- 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()