scala.collection.jcl

class LinkedHashSet

[source: scala/collection/jcl/LinkedHashSet.scala]

class LinkedHashSet[A](val override underlying : java.util.LinkedHashSet[A])
extends SetWrapper[A]
A set that is backed by a Java linked hash set, which fixes iteration order in terms of insertion order.
Author
Sean McDirmid
Additional Constructor Summary
def this : LinkedHashSet[A]
Method Summary
override def clone : LinkedHashSet[A]
Return a clone of this set.
Methods inherited from SetWrapper
isEmpty, clear, size
Methods inherited from CollectionWrapper
has, elements, hasAll, add, addAll, toString, hashCode, equals
Methods inherited from IterableWrapper
remove, removeAll, retainAll
Methods inherited from Set
contains, ++, --, +, -, retain, subsetOf, transform, projection
Methods inherited from Collection
-=, +=
Methods inherited from MutableIterable
retainOnly, size0
Methods inherited from Set
update, +=, ++=, ++=, +, ++, incl, -=, --=, --=, -, --, excl, intersect, <<, readOnly
Methods inherited from Set
apply, *, **, toArray, stringPrefix
Methods inherited from Iterable
concat, ++, map, flatMap, filter, partition, takeWhile, dropWhile, take, drop, foreach, forall, exists, find, findIndexOf, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toSeq, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize
Methods inherited from Function1
compose, andThen
Methods inherited from AnyRef
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Additional Constructor Details
def this : LinkedHashSet[A]

Method Details
override def clone : LinkedHashSet[A]
Return a clone of this set.
Returns
a set with the same elements.