All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.clulab.wm.eidoscommon.utils.EqualityHashSet.scala Maven / Gradle / Ivy

package org.clulab.wm.eidoscommon.utils

import scala.collection.mutable

object EqualityHashSet {
  type EqualityHashSet[K] = mutable.HashSet[K]

  def apply[T](): EqualityHashSet[T] = new EqualityHashSet[T]()

  def apply[T](values: Seq[T]): EqualityHashSet[T] = apply[T]() ++ values
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy