Packages

sealed trait Catenable[+A] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Catenable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def +:[B >: A](b: B): Catenable[B]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. final def collect[B](p: PartialFunction[A, B]): Catenable[B]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def filter(p: (A) => Boolean): Catenable[A]
  11. final def flatMap[B](f: (A) => Catenable[B]): Catenable[B]
  12. def foldLeft[B](z: B)(f: (B, A) => B): B
  13. def foldRight[B](lz: Eval[B])(f: (A, Eval[B]) => Eval[B]): Eval[B]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. final def isEmpty: Boolean
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def length: Int
  19. final def map[B](f: (A) => B): Catenable[B]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. final def toList: List[A]
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def traverse[G[_], B](f: (A) => G[B])(implicit G: Applicative[G]): G[Catenable[B]]

    Forces the structure in G[_].

  27. final def uncons: Option[(A, Catenable[A])]

    Ammortizes O(1) since we reconstruct the tails in such a way that subsequent unconses take literally constant time.

    Ammortizes O(1) since we reconstruct the tails in such a way that subsequent unconses take literally constant time. We only perform a logarithmic number of reconstructions when unconsing the whole catenable. Also note that thunks are only forced as required to view structure (i.e. left-biasing).

  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped