summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/collection/jcl/HashSet.scala
blob: 900b7008ac4ccf8c7cadff317a33d07cfa9efcd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2006-2007, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

package scala.collection.jcl;

/** A hash set that is backed by a Java hash set.
 *
 *  @author Sean McDirmid
 */
class HashSet[A](override val underlying: java.util.HashSet) extends CollectionWrapper[A] with SetWrapper[A] {
  /** Creates an underlying Java hash set. */
  def this() = this(new java.util.HashSet);
}