sealed abstract class Lst[+A] extends AnyRef

Linked list with O(1) cons, snoc and concatenation and amortized O(1) uncons.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Lst
  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](that: Lst[B]): Lst[B]
  4. final def +:[B >: A](b: B): Lst[B]
  5. final def :+[B >: A](b: B): Lst[B]
  6. final def :+?[B >: A](b: Option[B]): Lst[B]
    Annotations
    @inline()
  7. final def ::[B >: A](h: B): Lst[B]
  8. final def :::[B >: A](that: Lst[B]): Lst[B]
  9. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. final def ?+:[B >: A](b: Option[B]): Lst[B]
    Annotations
    @inline()
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. final def filter(p: (A) => Boolean): Lst[A]
  16. final def filterNot(p: (A) => Boolean): Lst[A]
  17. final def flatMap[B](f: (A) => Lst[B]): Lst[B]
  18. final def foldLeft[B](b: B)(f: (B, A) => B): B
  19. final def foldRight[B](b: B)(f: (A, B) => B): B
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  22. final def isEmpty: Boolean
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. final def map[B](f: (A) => B): Lst[B]
  25. final def mapRev_:::[B, A1 >: A](bsf: (Iterable[B], (B) => A1)): Lst[A1]
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  29. final def rev_:::[B >: A](bs: Iterable[B]): Lst[B]
  30. final def size: Int
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. final def toList: List[A]
  33. final def toRevList: List[A]
  34. def toString(): String
    Definition Classes
    Lst → AnyRef → Any
  35. final def uncons: Option[(A, Lst[A])]
    Annotations
    @tailrec()
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. 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

Inherited from AnyRef

Inherited from Any

Ungrouped