sealed abstract class Lst[+A] extends AnyRef
Linked list with O(1) cons, snoc and concatenation and amortized O(1) uncons.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Lst
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++[B >: A](that: Lst[B]): Lst[B]
- final def +:[B >: A](b: B): Lst[B]
- final def :+[B >: A](b: B): Lst[B]
- final def :+?[B >: A](b: Option[B]): Lst[B]
- Annotations
- @inline()
- final def ::[B >: A](h: B): Lst[B]
- final def :::[B >: A](that: Lst[B]): Lst[B]
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ?+:[B >: A](b: Option[B]): Lst[B]
- Annotations
- @inline()
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def filter(p: (A) => Boolean): Lst[A]
- final def filterNot(p: (A) => Boolean): Lst[A]
- final def flatMap[B](f: (A) => Lst[B]): Lst[B]
- final def foldLeft[B](b: B)(f: (B, A) => B): B
- final def foldRight[B](b: B)(f: (A, B) => B): B
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def map[B](f: (A) => B): Lst[B]
- final def mapRev_:::[B, A1 >: A](bsf: (Iterable[B], (B) => A1)): Lst[A1]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def rev_:::[B >: A](bs: Iterable[B]): Lst[B]
- final def size: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def toList: List[A]
- final def toRevList: List[A]
- def toString(): String
- Definition Classes
- Lst → AnyRef → Any
- final def uncons: Option[(A, Lst[A])]
- Annotations
- @tailrec()
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated