trait ContainingHighPriorityImplicits extends ContainingStandardImplicits
- Alphabetic
- By Inheritance
- ContainingHighPriorityImplicits
- ContainingStandardImplicits
- JavaContainingImplicits
- ContainingImpls
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
 
-   implicit  def containingNatureOfArray[E](implicit equality: Equality[E]): Containing[Array[E]]Implicit to support Containingnature ofArray.Implicit to support Containingnature ofArray.- E
- the type of the element in the - Array
- equality
- Equalitytype class that is used to check equality of element in the- Array
- returns
- Containing[Array[E]]that supports- Arrayin relevant- containsyntax
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def containingNatureOfEvery[E](implicit equality: Equality[E]): Containing[Every[E]]Implicit to support Containingnature ofEvery.Implicit to support Containingnature ofEvery.- E
- the type of the element in the - Every
- equality
- Equalitytype class that is used to check equality of element in the- Every
- returns
- Containing[Every[E]]that supports- Everyin relevant- containsyntax
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def containingNatureOfGenTraversable[E, TRAV[e] <: GenTraversable[e]](implicit equality: Equality[E]): Containing[TRAV[E]]Implicit to support Containingnature ofGenTraversable.Implicit to support Containingnature ofGenTraversable.- E
- the type of the element in the - GenTraversable
- TRAV
- any subtype of - GenTraversable
- equality
- Equalitytype class that is used to check equality of element in the- GenTraversable
- returns
- Containing[TRAV[E]]that supports- GenTraversablein relevant- containsyntax
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def containingNatureOfJavaCollection[E, JCOL[e] <: Collection[e]](implicit equality: Equality[E]): Containing[JCOL[E]]Implicit to support Containingnature ofjava.util.Collection.Implicit to support Containingnature ofjava.util.Collection.- E
- the type of the element in the - java.util.Collection
- JCOL
- any subtype of - java.util.Collection
- equality
- Equalitytype class that is used to check equality of element in the- java.util.Collection
- returns
- Containing[JCOL[E]]that supports- java.util.Collectionin relevant- containsyntax
 - Definition Classes
- JavaContainingImplicits
 
-   implicit  def containingNatureOfJavaMap[K, V, JMAP[k, v] <: Map[k, v]](implicit equality: Equality[java.util.Map.Entry[K, V]]): Containing[JMAP[K, V]]Implicit to support Containingnature ofjava.util.Map.Implicit to support Containingnature ofjava.util.Map.- K
- the type of the key in the - java.util.Map
- V
- the type of the value in the - java.util.Map
- JMAP
- any subtype of - java.util.Map
- equality
- Equalitytype class that is used to check equality of entry in the- java.util.Map
- returns
- Containing[JMAP[K, V]]that supports- java.util.Mapin relevant- containsyntax
 - Definition Classes
- JavaContainingImplicits
 
-   implicit  def containingNatureOfMap[K, V, MAP[k, v] <: GenMap[k, v]](implicit equality: Equality[(K, V)]): Containing[MAP[K, V]]Implicit to support Containingnature ofscala.collection.GenMap.Implicit to support Containingnature ofscala.collection.GenMap.- K
- the type of the key in the - scala.collection.GenMap
- V
- the type of the value in the - scala.collection.GenMap
- MAP
- any subtype of - scala.collection.GenMap
- equality
- Equalitytype class that is used to check equality of entry in the- scala.collection.GenMap
- returns
- Containing[MAP[K, V]]that supports- scala.collection.GenMapin relevant- containsyntax
 
-   implicit  def containingNatureOfOption[E, OPT[e] <: Option[e]](implicit equality: Equality[E]): Containing[OPT[E]]Implicit to support Containingnature ofscala.Option.Implicit to support Containingnature ofscala.Option.- E
- the type of the element in the - scala.Option
- OPT
- any subtype of - scala.Option
- equality
- Equalitytype class that is used to check equality of element in the- Option
- returns
- Containing[OPT[E]]that supports- scala.Optionin relevant- containsyntax
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def containingNatureOfString(implicit equality: Equality[Char]): Containing[String]Implicit to support Containingnature ofString.Implicit to support Containingnature ofString.- equality
- Equalitytype class that is used to check equality of- Charin the- String
- returns
- Containing[String]that supports- Stringin relevant- containsyntax
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def convertEqualityToArrayContaining[E](equality: Equality[E]): Containing[Array[E]]Implicit conversion that converts an Equalityof typeEintoContainingof typeArray[E].Implicit conversion that converts an Equalityof typeEintoContainingof typeArray[E]. This is required to support the explicitEqualitysyntax, for example:(Array("hi") should contain oneOf ("HI")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoContaining[Array[String]].- E
- type of elements in the - Array
- equality
- Equalityof type- E
- returns
- Containingof type- Array[E]
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def convertEqualityToEveryContaining[E](equality: Equality[E]): Containing[Every[E]]Implicit conversion that converts an Equalityof typeEintoContainingof typeEvery[E].Implicit conversion that converts an Equalityof typeEintoContainingof typeEvery[E]. This is required to support the explicitEqualitysyntax, for example:(Every("hi", "he", "ho") should contain oneOf ("HI")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoContaining[Every[String]].- E
- type of elements in the - Every
- equality
- Equalityof type- E
- returns
- Containingof type- Every[E]
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def convertEqualityToGenTraversableContaining[E, TRAV[e] <: GenTraversable[e]](equality: Equality[E]): Containing[TRAV[E]]Implicit conversion that converts an Equalityof typeEintoContainingof typeTRAV[E], whereTRAVis a subtype ofGenTraversable.Implicit conversion that converts an Equalityof typeEintoContainingof typeTRAV[E], whereTRAVis a subtype ofGenTraversable. This is required to support the explicitEqualitysyntax, for example:(List("hi") should contain oneOf ("HI")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoContaining[List[String]].- E
- type of elements in the - GenTraversable
- TRAV
- subtype of - GenTraversable
- equality
- Equalityof type- E
- returns
- Containingof type- TRAV[E]
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def convertEqualityToJavaCollectionContaining[E, JCOL[e] <: Collection[e]](equality: Equality[E]): Containing[JCOL[E]]Implicit conversion that converts an Equalityof typeEintoContainingof typeJCOL[E], whereJCOLis a subtype ofjava.util.Collection.Implicit conversion that converts an Equalityof typeEintoContainingof typeJCOL[E], whereJCOLis a subtype ofjava.util.Collection. This is required to support the explicitEqualitysyntax, for example:val javaList = new java.util.ArrayList[String]() javaList.add("hi") (javaList should contain oneOf ("HI")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoContaining[java.util.ArrayList[String]].- E
- type of elements in the - java.util.Collection
- JCOL
- subtype of - java.util.Collection
- equality
- Equalityof type- E
- returns
- Containingof type- JCOL[E]
 - Definition Classes
- JavaContainingImplicits
 
-   implicit  def convertEqualityToJavaMapContaining[K, V, JMAP[k, v] <: Map[k, v]](equality: Equality[java.util.Map.Entry[K, V]]): Containing[JMAP[K, V]]Implicit conversion that converts an Equalityof typejava.util.Map.Entry[K, V]intoContainingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.Map.Implicit conversion that converts an Equalityof typejava.util.Map.Entry[K, V]intoContainingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.Map. This is required to support the explicitEqualitysyntax, for example:val javaMap = new java.util.HashMap[Int, String]() javaMap.put(1, "one") // lowerCased needs to be implemented as Normalization[java.util.Map.Entry[K, V]] (javaMap should contain (Entry(1, "ONE"))) (after being lowerCased) (after being lowerCased)will returns anjava.util.Map.Entry[Int, String]and this implicit conversion will convert it intoContaining[java.util.HashMap[Int, String]].- K
- the type of the key in the - java.util.Map
- V
- the type of the value in the - java.util.Map
- JMAP
- any subtype of - java.util.Map
- equality
- Equalityof type- java.util.Map.Entry[K, V]
- returns
- Containingof type- JMAP[K, V]
 - Definition Classes
- JavaContainingImplicits
 
-   implicit  def convertEqualityToMapContaining[K, V, MAP[k, v] <: GenMap[k, v]](equality: Equality[(K, V)]): Containing[MAP[K, V]]Implicit conversion that converts an Equalityof typeTuple2[K, V]intoContainingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.GenMap.Implicit conversion that converts an Equalityof typeTuple2[K, V]intoContainingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.GenMap. This is required to support the explicitEqualitysyntax, for example:val map = Map(1 -> "one") // lowerCased needs to be implemented as Normalization[Tuple2[K, V]] (map should contain ((1, "ONE"))) (after being lowerCased) (after being lowerCased)will returns anTuple2[Int, String]and this implicit conversion will convert it intoContaining[scala.collection.GenMap[Int, String]].- K
- the type of the key in the - scala.collection.GenMap
- V
- the type of the value in the - scala.collection.GenMap
- MAP
- any subtype of - scala.collection.GenMap
- equality
- Equalityof type- Tuple2[K, V]
- returns
- Containingof type- MAP[K, V]
 
-   implicit  def convertEqualityToOptionContaining[E, OPT[e] <: Option[e]](equality: Equality[E]): Containing[OPT[E]]Implicit conversion that converts an Equalityof typeEintoContainingof typeOPT[E], whereOPTis a subtype ofscala.Option.Implicit conversion that converts an Equalityof typeEintoContainingof typeOPT[E], whereOPTis a subtype ofscala.Option. This is required to support the explicitEqualitysyntax, for example:(Some("hi") should contain oneOf ("HI")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoContaining[Some[String]].- E
- type of elements in the - scala.Option
- OPT
- subtype of - scala.Option
- equality
- Equalityof type- E
- returns
- Containingof type- OPT[E]
 - Definition Classes
- ContainingStandardImplicits
 
-   implicit  def convertEqualityToStringContaining(equality: Equality[Char]): Containing[String]Implicit conversion that converts an Equalityof typeCharintoContainingof typeString.Implicit conversion that converts an Equalityof typeCharintoContainingof typeString. This is required to support the explicitEqualitysyntax, for example:// lowerCased needs to be implemented as Normalization[Char] ("hi hello" should contain oneOf ('E')) (after being lowerCased) (after being lowerCased)will returns anEquality[Char]and this implicit conversion will convert it intoContaining[String].- equality
- Equalityof type- Char
- returns
- Containingof type- String
 - Definition Classes
- ContainingStandardImplicits
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
Deprecated Value Members
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated