object Sequencing
Companion object for Sequencing that provides implicit implementations for the following types:
- scala.collection.GenSeq
- scala.collection.SortedSet
- scala.collection.SortedMap
- Array
- java.util.List
- java.util.SortedSet
- java.util.SortedMap
- String
- Source
- Sequencing.scala
- Alphabetic
- By Inheritance
- Sequencing
- 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 convertEqualityToArraySequencing[E](equality: Equality[E]): Sequencing[Array[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeArray[E].Implicit conversion that converts an Equalityof typeEintoSequencingof typeArray[E]. This is required to support the explicitEqualitysyntax, for example:(Array("hi", "he") should contain inOrderOnly ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[Array[String]].- E
- type of elements in the - Array
- equality
- Equalityof type- E
- returns
- Sequencingof type- Array[E]
 
-   implicit  def convertEqualityToEverySequencing[E](equality: Equality[E]): Sequencing[Every[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeEvery[E].Implicit conversion that converts an Equalityof typeEintoSequencingof typeEvery[E]. This is required to support the explicitEqualitysyntax, for example:(Every("hi", "he") should contain inOrderOnly ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[Every[String]].- E
- type of elements in the - Every
- equality
- Equalityof type- E
- returns
- Sequencingof type- Every[E]
 
-   implicit  def convertEqualityToGenSeqSequencing[E, SEQ[e] <: GenSeq[e]](equality: Equality[E]): Sequencing[SEQ[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeSEQ[E], whereSEQis a subtype ofscala.collection.GenSeq.Implicit conversion that converts an Equalityof typeEintoSequencingof typeSEQ[E], whereSEQis a subtype ofscala.collection.GenSeq. This is required to support the explicitEqualitysyntax, for example:(List("hi", "he") should contain inOrderOnly ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[List[String]].- E
- type of elements in the - scala.collection.GenSeq
- SEQ
- subtype of - scala.collection.GenSeq
- equality
- Equalityof type- E
- returns
- Sequencingof type- SEQ[E]
 
-   implicit  def convertEqualityToJavaListSequencing[E, JLIST[e] <: List[e]](equality: Equality[E]): Sequencing[JLIST[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeJLIST[E], whereJLISTis a subtype ofjava.util.List.Implicit conversion that converts an Equalityof typeEintoSequencingof typeJLIST[E], whereJLISTis a subtype ofjava.util.List. This is required to support the explicitEqualitysyntax, for example:val javaList = new java.util.ArrayList[String]() javaList.add("hi", "he") (javaList should contain ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[java.util.ArrayList[String]].- E
- type of elements in the - java.util.List
- JLIST
- subtype of - java.util.List
- equality
- Equalityof type- E
- returns
- Sequencingof type- JLIST[E]
 
-   implicit  def convertEqualityToJavaSortedMapSequencing[K, V, JMAP[k, v] <: SortedMap[k, v]](equality: Equality[java.util.Map.Entry[K, V]]): Sequencing[JMAP[K, V]]Implicit conversion that converts an Equalityof typejava.util.Map.Entry[K, V]intoSequencingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.SortedMap.Implicit conversion that converts an Equalityof typejava.util.Map.Entry[K, V]intoSequencingof typeJMAP[K, V], whereJMAPis a subtype ofjava.util.SortedMap. This is required to support the explicitEqualitysyntax, for example:val javaMap = new java.util.TreeMap[Int, String]() javaMap.put(1, "one") // lowerCased needs to be implemented as Normalization[java.util.Map.Entry[K, V]] (javaMap should contain inOrderOnly (Entry(1, "ONE"))) (after being lowerCased) (after being lowerCased)will returns anjava.util.Map.Entry[Int, String]and this implicit conversion will convert it intoAggregating[java.util.TreeMap[Int, String]].- K
- the type of the key in the - java.util.SortedMap
- V
- the type of the value in the - java.util.SortedMap
- JMAP
- subtype of - java.util.SortedMap
- equality
- Equalityof type- java.util.Map.Entry[K, V]
- returns
- Sequencingof type- JMAP[K, V]
 
-   implicit  def convertEqualityToJavaSortedSetSequencing[E, JSET[e] <: SortedSet[e]](equality: Equality[E]): Sequencing[JSET[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeJSET[E], whereJSETis a subtype ofjava.util.SortedSet.Implicit conversion that converts an Equalityof typeEintoSequencingof typeJSET[E], whereJSETis a subtype ofjava.util.SortedSet. This is required to support the explicitEqualitysyntax, for example:val javaSet = new java.util.TreeSet[String]() javaSet.add("hi", "he") (javaSet should contain inOrderOnly ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[java.util.TreeSet[String]].- E
- type of elements in the - java.util.List
- JSET
- subtype of - java.util.List
- equality
- Equalityof type- E
- returns
- Sequencingof type- JLIST[E]
 
-   implicit  def convertEqualityToSortedMapSequencing[K, V, MAP[k, v] <: SortedMap[k, v]](equality: Equality[(K, V)]): Sequencing[MAP[K, V]]Implicit conversion that converts an Equalityof type(K, V)intoSequencingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.SortedMap.Implicit conversion that converts an Equalityof type(K, V)intoSequencingof typeMAP[K, V], whereMAPis a subtype ofscala.collection.SortedMap. This is required to support the explicitEqualitysyntax, for example:// lowerCased needs to be implemented as Normalization[(K, V)] (SortedMap("hi" -> "hi", "he" -> "he") should contain inOrderOnly ("HI" -> "HI", "HE" -> "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[SortedMap[String, String]].- K
- the type of the key in the - scala.collection.SortedMap
- V
- the type of the value in the - scala.collection.SortedMap
- MAP
- subtype of - scala.collection.SortedMap
- equality
- Equalityof type- (K, V)
- returns
- Sequencingof type- MAP[K, V]
 
-   implicit  def convertEqualityToSortedSetSequencing[E, SET[e] <: SortedSet[e]](equality: Equality[E]): Sequencing[SET[E]]Implicit conversion that converts an Equalityof typeEintoSequencingof typeSET[E], whereSETis a subtype ofscala.collection.SortedSet.Implicit conversion that converts an Equalityof typeEintoSequencingof typeSET[E], whereSETis a subtype ofscala.collection.SortedSet. This is required to support the explicitEqualitysyntax, for example:(SortedSet("hi", "he") should contain inOrderOnly ("HI", "HE")) (after being lowerCased) (after being lowerCased)will returns anEquality[String]and this implicit conversion will convert it intoSequencing[SortedSet[String]].- E
- type of elements in the - scala.collection.SortedSet
- SET
- subtype of - scala.collection.SortedSet
- equality
- Equalityof type- E
- returns
- Sequencingof type- SET[E]
 
-   implicit  def convertEqualityToStringSequencing(equality: Equality[Char]): Sequencing[String]Implicit conversion that converts an Equalityof typeCharintoSequencingof typeString.Implicit conversion that converts an Equalityof typeCharintoSequencingof typeString. This is required to support the explicitEqualitysyntax, for example:// lowerCased needs to be implemented as Normalization[Char] ("hi hello" should contain inOrderOnly ('E')) (after being lowerCased) (after being lowerCased)will returns anEquality[Char]and this implicit conversion will convert it intoSequencing[String].- equality
- Equalityof type- Char
- returns
- Sequencingof type- String
 
-   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()
 
-   implicit  def sequencingNatureOfArray[E](implicit equality: Equality[E]): Sequencing[Array[E]]Implicit to support Sequencingnature ofArray.Implicit to support Sequencingnature 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
- Sequencing[Array[E]]that supports- Arrayin relevant- containsyntax
 
-   implicit  def sequencingNatureOfEvery[E](implicit equality: Equality[E]): Sequencing[Every[E]]Implicit to support Sequencingnature ofEvery.Implicit to support Sequencingnature 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
- Sequencing[Every[E]]that supports- Everyin relevant- containsyntax
 
-   implicit  def sequencingNatureOfGenSeq[E, SEQ[e] <: GenSeq[e]](implicit equality: Equality[E]): Sequencing[SEQ[E]]Implicit to support Sequencingnature ofscala.collection.GenSeq.Implicit to support Sequencingnature ofscala.collection.GenSeq.- E
- the type of the element in the - scala.collection.GenSeq
- SEQ
- any subtype of - scala.collection.GenSeq
- equality
- Equalitytype class that is used to check equality of element in the- scala.collection.GenSeq
- returns
- Sequencing[SEQ[E]]that supports- scala.collection.GenSeqin relevant- containsyntax
 
-   implicit  def sequencingNatureOfJavaList[E, JLIST[e] <: List[e]](implicit equality: Equality[E]): Sequencing[JLIST[E]]Implicit to support Sequencingnature ofjava.util.List.Implicit to support Sequencingnature ofjava.util.List.- E
- the type of the element in the - java.util.List
- JLIST
- any subtype of - java.util.List
- equality
- Equalitytype class that is used to check equality of element in the- java.util.List
- returns
- Sequencing[JLIST[E]]that supports- java.util.Listin relevant- containsyntax
 
-   implicit  def sequencingNatureOfJavaSortedMap[K, V, JMAP[k, v] <: SortedMap[k, v]](implicit equality: Equality[java.util.Map.Entry[K, V]]): Sequencing[JMAP[K, V]]Implicit to support Sequencingnature ofjava.util.SortedMap.Implicit to support Sequencingnature ofjava.util.SortedMap.- K
- the type of the key in the - java.util.SortedMap
- V
- the type of the value in the - java.util.SortedMap
- JMAP
- any subtype of - java.util.SortedMap
- equality
- Equalitytype class that is used to check equality of entry in the- java.util.SortedMap
- returns
- Sequencing[JMAP[K, V]]that supports- java.util.SortedMapin relevant- containsyntax
 
-   implicit  def sequencingNatureOfJavaSortedSet[E, JSET[e] <: SortedSet[e]](implicit equality: Equality[E]): Sequencing[JSET[E]]Implicit to support Sequencingnature ofjava.util.SortedSet.Implicit to support Sequencingnature ofjava.util.SortedSet.- E
- the type of the element in the - java.util.SortedSet
- JSET
- any subtype of - java.util.SortedSet
- equality
- Equalitytype class that is used to check equality of element in the- java.util.SortedSet
- returns
- Sequencing[JSET[E]]that supports- java.util.SortedSetin relevant- containsyntax
 
-   implicit  def sequencingNatureOfSortedMap[K, V, MAP[k, v] <: SortedMap[k, v]](implicit equality: Equality[(K, V)]): Sequencing[MAP[K, V]]Implicit to support Sequencingnature ofscala.collection.SortedMap.Implicit to support Sequencingnature ofscala.collection.SortedMap.- K
- the type of the key in the - scala.collection.SortedMap
- V
- the type of the value in the - scala.collection.SortedMap
- MAP
- any subtype of - scala.collection.SortedMap
- equality
- Equalitytype class that is used to check equality of element in the- scala.collection.SortedMap
- returns
- Sequencing[MAP[K, V]]that supports- scala.collection.SortedMapin relevant- containsyntax
 
-   implicit  def sequencingNatureOfSortedSet[E, SET[e] <: SortedSet[e]](implicit equality: Equality[E]): Sequencing[SET[E]]Implicit to support Sequencingnature ofscala.collection.SortedSet.Implicit to support Sequencingnature ofscala.collection.SortedSet.- E
- the type of the element in the - scala.collection.SortedSet
- SET
- any subtype of - scala.collection.SortedSet
- equality
- Equalitytype class that is used to check equality of element in the- scala.collection.SortedSet
- returns
- Sequencing[SET[E]]that supports- scala.collection.SortedSetin relevant- containsyntax
 
-   implicit  def sequencingNatureOfString(implicit equality: Equality[Char]): Sequencing[String]Implicit to support Sequencingnature ofString.Implicit to support Sequencingnature ofString.- equality
- Equalitytype class that is used to check equality of- Charin the- String
- returns
- Sequencing[String]that supports- Stringin relevant- containsyntax
 
-   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