trait HashInstances extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HashInstances
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. implicit def ParMapHash[A, B](implicit arg0: Hash[B]): Hash[ParMap[A, B]]

    Derives a Hash[ParMap[A, B]] given a Hash[B].

    Derives a Hash[ParMap[A, B]] given a Hash[B]. Due to the limitations of Scala's ParMap, this uses object equality and hash code on the keys.

  2. implicit def ParSeqHash[A](implicit arg0: Hash[A]): Hash[scala.collection.parallel.immutable.ParSeq[A]]

    Derives a Hash[ParSeq[A]] given a Hash[A].