Scala Library
|
|
trait
DoubleLinkedListTemplate[A, This <: LinearSequence[A] with
DoubleLinkedListTemplate[A, This] >: Null]
extends
LinkedListTemplate[A, This]A
refers to the element type
of the list, type variable This
is used to model self
types of linked lists.Value Summary | |
var
|
prev : This |
Values and Variables inherited from LinkedListTemplate | |
elem, next |
Method Summary | |
override def
|
append (that : This) : Unit |
override def
|
insert (that : This) : Unit |
def
|
remove : Unit |
Methods inherited from LinkedListTemplate | |
isEmpty, length, head, tail, drop, apply, update, get, iterator, foreach |
Methods inherited from SequenceTemplate | |
lengthCompare, size, isDefinedAt, zip, zipAll, zipWithIndex, segmentLength, prefixLength, indexWhere, indexWhere, findIndexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexWhere, lastIndexWhere, reverse, reverseIterator, reversedElements, startsWith, startsWith, endsWith, indexOfSeq, indexOfSeq, lastIndexOfSeq, lastIndexOfSeq, contains, union, diff, intersect, removeDuplicates, patch, padTo, toSequence, indices, view, view, equals, toString, sortWith, findLastIndexOf, slice, equalsWith, containsSlice, projection |
Methods inherited from IterableTemplate | |
elements, foldRight, reduceRight, toIterable, takeRight, dropRight, sameElements, toStream, first, firstOption, toSeq |
Methods inherited from TraversableTemplate | |
newBuilder (abstract), thisCollection, nonEmpty, hasDefiniteSize, ++, ++, map, flatMap, filter, filterMap, filterNot, remove, partition, groupBy, forall, exists, count, find, foldLeft, /:, :\, reduceLeft, reduceLeftOption, reduceRightOption, headOption, last, lastOption, init, take, slice, takeWhile, dropWhile, span, splitAt, copyToBuffer, copyToArray, copyToArray, toArray, toList, toSet, mkString, mkString, mkString, addString, addString, addString, stringPrefix |
Methods inherited from AnyRef | |
getClass, hashCode, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Value Details |
Method Details |
Scala Library
|
|