Mima 2.12.6 vs 2.13.0-M4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.typesafe.tools.mima.cli | |
import com.typesafe.tools.mima.lib.MiMaLib | |
import com.typesafe.tools.mima.core.Config | |
import java.nio.file._ | |
object MiMaCli { | |
def main(args: Array[String]): Unit = { | |
val oldV = "2.12.6" | |
val newV = "2.13.0-M4" | |
val (oldJar, newJar) = | |
if(args.size == 2) (args(0), args(1)) | |
else { | |
val oldP = s"/home/gui/.coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/$oldV/scala-library-$oldV.jar" | |
val newP = s"/home/gui/.coursier/cache/v1/https/repo1.maven.org/maven2/org/scala-lang/scala-library/$newV/scala-library-$newV.jar" | |
(oldP, newP) | |
} | |
Config.setup("foo", Array(oldJar, newJar)) | |
val mima = new MiMaLib(Config.baseClassPath) | |
val allProblems = mima.collectProblems(oldJar, newJar) | |
val sb = new StringBuilder("") | |
import System.{lineSeparator => nl} | |
allProblems.groupBy(_.getClass.getSimpleName).foreach{ | |
case (k, vs) => | |
sb.append(nl) | |
sb.append(s"== $k ==$nl") | |
sb.append(nl) | |
vs.foreach{v => | |
sb.append(v.description(newV)) | |
sb.append(nl) | |
} | |
} | |
Files.write(Paths.get("problems.txt"), sb.toString.getBytes()) | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== ReversedMissingMethodProblem == | |
abstract method substituteBoth(java.lang.Object)java.lang.Object in class scala.Predef#<:< is present only in 2.13.0-M4 version | |
abstract method substituteBoth(java.lang.Object)java.lang.Object in class scala.Predef#=:= is present only in 2.13.0-M4 version | |
abstract method lazyLines()scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines(java.lang.Integer)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines(scala.sys.process.ProcessLogger)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines(scala.sys.process.ProcessLogger,java.lang.Integer)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract deprecated method lineStream_!(java.lang.Integer)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract deprecated method lineStream_!(scala.sys.process.ProcessLogger,java.lang.Integer)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines_!()scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines_!(java.lang.Integer)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines_!(scala.sys.process.ProcessLogger)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method lazyLines_!(scala.sys.process.ProcessLogger,java.lang.Integer)scala.collection.immutable.LazyList in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract deprecated method lineStream(java.lang.Integer)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract deprecated method lineStream(scala.sys.process.ProcessLogger,java.lang.Integer)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder is present only in 2.13.0-M4 version | |
abstract method parseString(java.lang.String)scala.Option in interface scala.math.Numeric is present only in 2.13.0-M4 version | |
abstract method patchInPlace(Int,scala.collection.Seq,Int)scala.collection.mutable.Buffer in interface scala.collection.mutable.Buffer is present only in 2.13.0-M4 version | |
abstract method insert(Int,java.lang.Object)Unit in interface scala.collection.mutable.Buffer is present only in 2.13.0-M4 version | |
abstract method prepend(java.lang.Object)scala.collection.mutable.Buffer in interface scala.collection.mutable.Buffer is present only in 2.13.0-M4 version | |
abstract method insertAll(Int,scala.collection.IterableOnce)Unit in interface scala.collection.mutable.Buffer is present only in 2.13.0-M4 version | |
abstract method elems()java.lang.Object in class scala.collection.mutable.ArrayBuilder is present only in 2.13.0-M4 version | |
abstract method resize(Int)Unit in class scala.collection.mutable.ArrayBuilder is present only in 2.13.0-M4 version | |
abstract method next()scala.collection.mutable.HashEntry in interface scala.collection.mutable.HashEntry is present only in 2.13.0-M4 version | |
abstract method next_=(scala.collection.mutable.HashEntry)Unit in interface scala.collection.mutable.HashEntry is present only in 2.13.0-M4 version | |
abstract method elemTag()scala.reflect.ClassTag in class scala.collection.mutable.ArraySeq is present only in 2.13.0-M4 version | |
abstract method array()java.lang.Object in class scala.collection.mutable.ArraySeq is present only in 2.13.0-M4 version | |
abstract method groupNames()scala.collection.immutable.Seq in interface scala.util.matching.Regex#MatchData is present only in 2.13.0-M4 version | |
== MissingTypesProblem == | |
the type hierarchy of object scala.Console is different in 2.13.0-M4 version. Missing types {scala.DeprecatedConsole} | |
the type hierarchy of class scala.SerialVersionUID is different in 2.13.0-M4 version. Missing types {scala.annotation.ClassfileAnnotation} | |
the type hierarchy of object scala.Predef is different in 2.13.0-M4 version. Missing types {scala.DeprecatedPredef} | |
the type hierarchy of object scala.Array is different in 2.13.0-M4 version. Missing types {scala.FallbackArrayBuilding} | |
the type hierarchy of class scala.Enumeration#ValueSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.sys.SystemProperties is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.runtime.Tuple2Zipped is different in 2.13.0-M4 version. Missing types {scala.runtime.ZippedTraversable2} | |
the type hierarchy of class scala.runtime.Tuple3Zipped is different in 2.13.0-M4 version. Missing types {scala.runtime.ZippedTraversable3} | |
the type hierarchy of class scala.io.Source#LineIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.io.BufferedSource#BufferedLineIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.io.Source is different in 2.13.0-M4 version. Missing types {scala.collection.GenTraversableOnce,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.io.BufferedSource is different in 2.13.0-M4 version. Missing types {scala.collection.GenTraversableOnce,scala.collection.TraversableOnce} | |
the type hierarchy of interface scala.collection.SeqView is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.TraversableView,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.IterableViewLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.TraversableViewLike,scala.collection.IterableView,scala.collection.SeqViewLike,scala.Function1,scala.Equals,scala.collection.ViewMkString,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.Seq,scala.PartialFunction} | |
the type hierarchy of interface scala.collection.LinearSeq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.LinearSeqLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of interface scala.collection.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.SortedSetLike,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.AbstractMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.DefaultMap is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedMapFactory} | |
the type hierarchy of class scala.collection.AbstractIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedSetFactory} | |
the type hierarchy of object scala.collection.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.IndexedSeqFactory,scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.SortedSetLike,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.BitSetLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of interface scala.collection.Map is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.Map is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory} | |
the type hierarchy of interface scala.collection.Iterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of interface scala.collection.BufferedIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of interface scala.collection.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.SortedMapLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.Iterator#SliceIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.Set is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericCompanion,scala.collection.generic.GenSetFactory,scala.collection.generic.SetFactory} | |
the type hierarchy of class scala.collection.AbstractIterable is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.AbstractSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.BitSetFactory} | |
the type hierarchy of object scala.collection.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.LinearSeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.Equals,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.Iterator#ConcatIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.AbstractSeq is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.Iterator#GroupedIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of interface scala.collection.Set is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of interface scala.collection.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.IndexedSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of interface scala.collection.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.immutable.LongMapValueIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.BitSet#BitSetN is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.IntMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.IndexedSeqFactory,scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.immutable.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.SortedSetLike,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.immutable.IntMapValueIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.TreeMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedMapFactory,scala.collection.generic.ImmutableSortedMapFactory} | |
the type hierarchy of class scala.collection.immutable.NumericRange#Exclusive is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.immutable.LinearSeq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.LinearSeqLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.immutable.VectorBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.immutable.LongMapKeyIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.Nil is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.TreeSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedSetFactory,scala.collection.generic.ImmutableSortedSetFactory} | |
the type hierarchy of interface scala.collection.immutable.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.IndexedSeqLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of interface scala.collection.immutable.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.immutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.Immutable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.SortedMapLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.immutable.TrieIterator is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractIterator} | |
the type hierarchy of class scala.collection.immutable.RedBlackTree#EntriesIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.AbstractMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.TreeMap is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.immutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.Immutable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.SortedMapLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.immutable.LongMap#Nil is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.ListSet#EmptyListSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.immutable.Set is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.immutable.NumericRange#Inclusive is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Queue is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.immutable.Map is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.immutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.Immutable,scala.collection.MapLike,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenMapLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.immutable.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.BitSetFactory} | |
the type hierarchy of class scala.collection.immutable.Map#WithDefault is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.Map$WithDefault} | |
the type hierarchy of class scala.collection.immutable.IntMapIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.NumericRange is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.HashMap#EmptyHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedSetFactory,scala.collection.generic.ImmutableSortedSetFactory} | |
the type hierarchy of class scala.collection.immutable.LongMapEntryIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.Queue#EmptyQueue is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.List is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.immutable.HashSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.ImmutableSetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenSetFactory} | |
the type hierarchy of class scala.collection.immutable.ListSet#Node is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.RedBlackTree#KeysIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.List is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.LongMap#Tip is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.TreeSet is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Sorted,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.SortedSetLike,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.immutable.RedBlackTree#ValuesIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.RedBlackTree#TreeIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.VectorIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.LinearSeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.immutable.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.GenSeqLike,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.immutable.Queue is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Vector is different in 2.13.0-M4 version. Missing types {scala.collection.generic.IndexedSeqFactory,scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.immutable.IntMap#Tip is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.immutable.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.Immutable,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.Equals,scala.collection.immutable.Traversable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.immutable.WrappedString is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.ListMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.TrieIterator#DupIterator is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractIterator} | |
the type hierarchy of object scala.collection.immutable.Stream is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.immutable.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedMapFactory,scala.collection.generic.ImmutableSortedMapFactory} | |
the type hierarchy of class scala.collection.immutable.Stream#Cons is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.IntMap#Nil is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.ListSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.ImmutableSetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenSetFactory} | |
the type hierarchy of class scala.collection.immutable.ListMap#Node is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.BitSet#BitSet1 is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.ListMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.ImmutableMapFactory} | |
the type hierarchy of class scala.collection.immutable.LongMapIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.immutable.ListSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.ListMap#EmptyListMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Map is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.ImmutableMapFactory} | |
the type hierarchy of class scala.collection.immutable.:: is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.LongMap#Bin is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.immutable.IntMap#Bin is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.Range#Inclusive is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Stream#Empty is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.Vector is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.IntMapEntryIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.HashMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.ImmutableMapFactory} | |
the type hierarchy of object scala.collection.immutable.Set is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.ImmutableSetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenSetFactory} | |
the type hierarchy of class scala.collection.immutable.Stream is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.Map#Map3 is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.IntMapKeyIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.immutable.Map#EmptyMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Set#EmptySet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.immutable.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.immutable.HashSet#EmptyHashSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.HashSet#LeafHashSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.HashMap#HashMapCollision1 is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.LongMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.immutable.BitSet#BitSet2 is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JIteratorWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.GenTraversableOnce,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.convert.Wrappers#JIterableWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JSetWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.AbstractIterable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JListWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JConcurrentMapWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JMapWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JDictionaryWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JEnumerationWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.GenTraversableOnce,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.convert.Wrappers#JPropertiesWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.convert.Wrappers#JCollectionWrapper is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.convert.Wrappers#JMapWrapperLike is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.Map,scala.collection.GenTraversable,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.Iterable,scala.collection.GenMapLike,scala.Equals,scala.collection.mutable.Iterable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.mutable.Map} | |
the type hierarchy of interface scala.collection.concurrent.Map is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.concurrent.TrieMapIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of object scala.collection.concurrent.TrieMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of class scala.collection.concurrent.TrieMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.CustomParallelizable,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.mutable.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.mutable.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.generic.Sorted,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.SortedMapLike,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.ArrayBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.WeakHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of class scala.collection.mutable.ListBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.TreeMap is different in 2.13.0-M4 version. Missing types {scala.collection.mutable.AbstractSortedMap,scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.RedBlackTree#EntriesIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.mutable.LinkedHashSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.AbstractIterable} | |
the type hierarchy of object scala.collection.mutable.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.BitSetFactory} | |
the type hierarchy of class scala.collection.mutable.AbstractSeq is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.LongMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.PriorityQueue is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericOrderedCompanion,scala.collection.generic.OrderedTraversableFactory} | |
the type hierarchy of object scala.collection.mutable.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.LongMap#LongMapBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of interface scala.collection.mutable.Buffer is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.script.Scriptable,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.SeqLike,scala.collection.mutable.BufferLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofInt is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofUnit is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of object scala.collection.mutable.ArraySeq is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.PriorityQueue#ResizableArrayAccess is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of object scala.collection.mutable.SortedMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedMapFactory,scala.collection.generic.MutableSortedMapFactory} | |
the type hierarchy of object scala.collection.mutable.ListMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of class scala.collection.mutable.RedBlackTree#TreeIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of interface scala.collection.mutable.Builder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.Stack is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.BitSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.AbstractIterable} | |
the type hierarchy of class scala.collection.mutable.UnrolledBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.Set is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.MutableSetFactory,scala.collection.generic.GenSetFactory} | |
the type hierarchy of interface scala.collection.mutable.Seq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.mutable.SeqLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.Queue is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.MutableList} | |
the type hierarchy of object scala.collection.mutable.HashSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.MutableSetFactory,scala.collection.generic.GenSetFactory} | |
the type hierarchy of class scala.collection.mutable.StringBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of interface scala.collection.mutable.MultiMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.AnyRefMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.AbstractBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.HashMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.mutable.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.script.Scriptable,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.mutable.SetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.generic.Sorted,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.SortedSetLike,scala.collection.Traversable,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofChar is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofLong is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of object scala.collection.mutable.Stack is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.AbstractIterable is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.mutable.ReusableBuilder is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of object scala.collection.mutable.SortedSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedSetFactory,scala.collection.generic.MutableSortedSetFactory} | |
the type hierarchy of class scala.collection.mutable.AbstractMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.TreeSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedSetFactory,scala.collection.generic.MutableSortedSetFactory} | |
the type hierarchy of object scala.collection.mutable.Map is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of class scala.collection.mutable.OpenHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.Buffer is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.mutable.LinkedHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of class scala.collection.mutable.WeakHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of interface scala.collection.mutable.IndexedSeq is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.mutable.SeqLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.mutable.IndexedSeqLike,scala.collection.GenSeq,scala.collection.SeqLike,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenSeqLike,scala.collection.IndexedSeqLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.PriorityQueue is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.ArrayBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.LinkedHashMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofShort is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of interface scala.collection.mutable.Set is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.script.Scriptable,scala.collection.generic.HasNewBuilder,scala.collection.GenSetLike,scala.collection.mutable.SetLike,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.GenSet,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.SetLike,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce,scala.collection.generic.GenericSetTemplate} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofDouble is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of interface scala.collection.mutable.Iterable is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.Traversable,scala.collection.GenTraversable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.Equals,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of object scala.collection.mutable.LinkedHashSet is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SetFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.MutableSetFactory,scala.collection.generic.GenSetFactory} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofFloat is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.RedBlackTree#ValuesIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.mutable.ListMap is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable} | |
the type hierarchy of object scala.collection.mutable.HashMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenMapFactory,scala.collection.generic.MapFactory,scala.collection.generic.MutableMapFactory} | |
the type hierarchy of object scala.collection.mutable.ListBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.TreeSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.AbstractIterable,scala.collection.mutable.AbstractSortedSet} | |
the type hierarchy of object scala.collection.mutable.TreeMap is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SortedMapFactory,scala.collection.generic.MutableSortedMapFactory} | |
the type hierarchy of interface scala.collection.mutable.Map is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.TraversableLike,scala.collection.generic.HasNewBuilder,scala.collection.GenIterable,scala.collection.IterableLike,scala.collection.generic.Subtractable,scala.collection.generic.Clearable,scala.collection.mutable.MapLike,scala.collection.generic.GenericTraversableTemplate,scala.collection.GenTraversableOnce,scala.collection.GenMap,scala.collection.Traversable,scala.collection.MapLike,scala.collection.mutable.Builder,scala.collection.GenTraversable,scala.collection.generic.Shrinkable,scala.collection.GenIterableLike,scala.collection.Parallelizable,scala.collection.mutable.Traversable,scala.Mutable,scala.collection.GenMapLike,scala.collection.GenTraversableLike,scala.collection.generic.FilterMonadic,scala.collection.TraversableOnce} | |
the type hierarchy of class scala.collection.mutable.Map#WithDefault is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.Map$WithDefault} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofBoolean is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of object scala.collection.mutable.Queue is different in 2.13.0-M4 version. Missing types {scala.collection.generic.SeqFactory,scala.collection.generic.GenSeqFactory,scala.collection.generic.GenericCompanion,scala.collection.generic.GenTraversableFactory} | |
the type hierarchy of object scala.collection.mutable.UnrolledBuffer is different in 2.13.0-M4 version. Missing types {scala.collection.generic.GenericClassTagCompanion,scala.collection.generic.ClassTagTraversableFactory} | |
the type hierarchy of class scala.collection.mutable.AbstractSet is different in 2.13.0-M4 version. Missing types {scala.collection.AbstractTraversable,scala.collection.mutable.AbstractIterable} | |
the type hierarchy of class scala.collection.mutable.RedBlackTree#KeysIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofByte is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.collection.mutable.ArrayBuilder#ofRef is different in 2.13.0-M4 version. Missing types {scala.collection.generic.Growable,scala.collection.generic.Clearable} | |
the type hierarchy of class scala.util.matching.Regex#MatchIterator is different in 2.13.0-M4 version. Missing types {scala.collection.TraversableOnce,scala.collection.GenTraversableOnce} | |
== IncompatibleMethTypeProblem == | |
method printf(java.lang.String,scala.collection.Seq)Unit in object scala.Console's type is different in 2.13.0-M4 version, where it is (java.lang.String,scala.collection.immutable.Seq)Unit instead of (java.lang.String,scala.collection.Seq)Unit | |
method printf(java.lang.String,scala.collection.Seq)Unit in object scala.Predef's type is different in 2.13.0-M4 version, where it is (java.lang.String,scala.collection.immutable.Seq)Unit instead of (java.lang.String,scala.collection.Seq)Unit | |
method raw(scala.collection.Seq)java.lang.String in class scala.StringContext's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.String instead of (scala.collection.Seq)java.lang.String | |
method s(scala.collection.Seq)java.lang.String in class scala.StringContext's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.String instead of (scala.collection.Seq)java.lang.String | |
method this(scala.collection.Seq)Unit in class scala.StringContext's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)Unit instead of (scala.collection.Seq)Unit | |
method this(scala.collection.Seq)Unit in class scala.specialized in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq)Unit, (scala.Specializable#SpecializedGroup)Unit | |
method apply(scala.collection.Seq)scala.Enumeration#ValueSet in object scala.Enumeration#ValueSet's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.Enumeration#ValueSet | |
method concat(scala.collection.Seq,scala.reflect.ClassTag)java.lang.Object in object scala.Array's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object instead of (scala.collection.Seq,scala.reflect.ClassTag)java.lang.Object | |
method apply(scala.collection.Seq,scala.reflect.ClassTag)java.lang.Object in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Boolean,scala.collection.Seq)Array[Boolean] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Byte,scala.collection.Seq)Array[Byte] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Short,scala.collection.Seq)Array[Short] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Char,scala.collection.Seq)Array[Char] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Int,scala.collection.Seq)Array[Int] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Long,scala.collection.Seq)Array[Long] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Float,scala.collection.Seq)Array[Float] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(Double,scala.collection.Seq)Array[Double] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(scala.runtime.BoxedUnit,scala.collection.Seq)Array[scala.runtime.BoxedUnit] in object scala.Array in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq,scala.reflect.ClassTag)java.lang.Object, (scala.runtime.BoxedUnit,scala.collection.immutable.Seq)Array[scala.runtime.BoxedUnit], (Byte,scala.collection.immutable.Seq)Array[Byte], (Boolean,scala.collection.immutable.Seq)Array[Boolean], (Long,scala.collection.immutable.Seq)Array[Long], (Int,scala.collection.immutable.Seq)Array[Int], (Float,scala.collection.immutable.Seq)Array[Float], (Double,scala.collection.immutable.Seq)Array[Double], (Short,scala.collection.immutable.Seq)Array[Short], (Char,scala.collection.immutable.Seq)Array[Char] | |
method apply(scala.collection.Seq)scala.StringContext in object scala.StringContext's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.StringContext instead of (scala.collection.Seq)scala.StringContext | |
method -(scala.Enumeration#Value)scala.Enumeration#ValueSet in class scala.Enumeration#ValueSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.immutable.SetOps instead of (scala.Enumeration#Value)scala.Enumeration#ValueSet | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.Enumeration#ValueSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method +(scala.Enumeration#Value)scala.Enumeration#ValueSet in class scala.Enumeration#ValueSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.SetOps instead of (scala.Enumeration#Value)scala.Enumeration#ValueSet | |
method +=(scala.Tuple2)scala.sys.SystemProperties in class scala.sys.SystemProperties's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.sys.SystemProperties | |
method -=(java.lang.String)scala.sys.SystemProperties in class scala.sys.SystemProperties's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Shrinkable instead of (java.lang.String)scala.sys.SystemProperties | |
method cat(scala.sys.process.ProcessBuilder#Source,scala.collection.Seq)scala.sys.process.ProcessBuilder in object scala.sys.process.Process's type is different in 2.13.0-M4 version, where it is (scala.sys.process.ProcessBuilder#Source,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder instead of (scala.sys.process.ProcessBuilder#Source,scala.collection.Seq)scala.sys.process.ProcessBuilder | |
method apply(java.lang.String,java.io.File,scala.collection.Seq)scala.sys.process.ProcessBuilder in object scala.sys.process.Process in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(scala.collection.Seq,java.io.File,scala.collection.Seq)scala.sys.process.ProcessBuilder in object scala.sys.process.Process in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(java.lang.String,scala.Option,scala.collection.Seq)scala.sys.process.ProcessBuilder in object scala.sys.process.Process in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(scala.collection.Seq,scala.Option,scala.collection.Seq)scala.sys.process.ProcessBuilder in object scala.sys.process.Process in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method dbg(scala.collection.Seq)Unit in object scala.sys.process.processInternal's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)Unit instead of (scala.collection.Seq)Unit | |
method cat(scala.sys.process.ProcessBuilder#Source,scala.collection.Seq)scala.sys.process.ProcessBuilder in interface scala.sys.process.ProcessCreation's type is different in 2.13.0-M4 version, where it is (scala.sys.process.ProcessBuilder#Source,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder instead of (scala.sys.process.ProcessBuilder#Source,scala.collection.Seq)scala.sys.process.ProcessBuilder | |
method apply(java.lang.String,java.io.File,scala.collection.Seq)scala.sys.process.ProcessBuilder in interface scala.sys.process.ProcessCreation in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(scala.collection.Seq,java.io.File,scala.collection.Seq)scala.sys.process.ProcessBuilder in interface scala.sys.process.ProcessCreation in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(java.lang.String,scala.Option,scala.collection.Seq)scala.sys.process.ProcessBuilder in interface scala.sys.process.ProcessCreation in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
method apply(scala.collection.Seq,scala.Option,scala.collection.Seq)scala.sys.process.ProcessBuilder in interface scala.sys.process.ProcessCreation in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (scala.collection.Seq,scala.Option,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder, (java.lang.String,java.io.File,scala.collection.immutable.Seq)scala.sys.process.ProcessBuilder | |
extension method flatMap$extension(scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple2,scala.Function2,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method map$extension(scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple2,scala.Function2,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method filter$extension(scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple2 in object scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple2,scala.Function2,scala.collection.BuildFrom,scala.collection.BuildFrom)scala.Tuple2 instead of (scala.Tuple2,scala.Function2,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple2 | |
extension method invert$extension(scala.Tuple3,scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple3Zipped#Ops's type is different in 2.13.0-M4 version, where it is (scala.Tuple3,scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple3,scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method invert(scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple2Zipped#Ops's type is different in 2.13.0-M4 version, where it is (scala.Predef#<:<,scala.Predef#<:<,scala.collection.BuildFrom)java.lang.Object instead of (scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method flatMap(scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function2,scala.collection.BuildFrom)java.lang.Object instead of (scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method filter(scala.Function2,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple2 in class scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function2,scala.collection.BuildFrom,scala.collection.BuildFrom)scala.Tuple2 instead of (scala.Function2,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple2 | |
method map(scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple2Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function2,scala.collection.BuildFrom)java.lang.Object instead of (scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method drop(java.lang.Object,Int,scala.collection.generic.IsTraversableLike)java.lang.Object in object scala.runtime.ScalaRunTime's type is different in 2.13.0-M4 version, where it is (java.lang.Object,Int,scala.collection.generic.IsIterableLike)java.lang.Object instead of (java.lang.Object,Int,scala.collection.generic.IsTraversableLike)java.lang.Object | |
method invert(scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple3Zipped#Ops's type is different in 2.13.0-M4 version, where it is (scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.BuildFrom)java.lang.Object instead of (scala.Predef#<:<,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method flatMap(scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function3,scala.collection.BuildFrom)java.lang.Object instead of (scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method filter(scala.Function3,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple3 in class scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function3,scala.collection.BuildFrom,scala.collection.BuildFrom,scala.collection.BuildFrom)scala.Tuple3 instead of (scala.Function3,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple3 | |
method map(scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Function3,scala.collection.BuildFrom)java.lang.Object instead of (scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method invert$extension(scala.Tuple2,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple2Zipped#Ops's type is different in 2.13.0-M4 version, where it is (scala.Tuple2,scala.Predef#<:<,scala.Predef#<:<,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple2,scala.Predef#<:<,scala.Predef#<:<,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method flatMap$extension(scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple3,scala.Function3,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method map$extension(scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object in object scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple3,scala.Function3,scala.collection.BuildFrom)java.lang.Object instead of (scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom)java.lang.Object | |
extension method filter$extension(scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple3 in object scala.runtime.Tuple3Zipped's type is different in 2.13.0-M4 version, where it is (scala.Tuple3,scala.Function3,scala.collection.BuildFrom,scala.collection.BuildFrom,scala.collection.BuildFrom)scala.Tuple3 instead of (scala.Tuple3,scala.Function3,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom,scala.collection.generic.CanBuildFrom)scala.Tuple3 | |
method abstractType(scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.Seq)scala.reflect.ClassTag in object scala.reflect.ClassManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.OptManifest,java.lang.String,scala.reflect.ClassTag,scala.collection.immutable.Seq)scala.reflect.ClassTag, (scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.ClassTag | |
method abstractType(scala.reflect.OptManifest,java.lang.String,scala.reflect.ClassTag,scala.collection.Seq)scala.reflect.ClassTag in object scala.reflect.ClassManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.OptManifest,java.lang.String,scala.reflect.ClassTag,scala.collection.immutable.Seq)scala.reflect.ClassTag, (scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.ClassTag | |
method classType(java.lang.Class,scala.reflect.OptManifest,scala.collection.Seq)scala.reflect.ClassTag in object scala.reflect.ClassManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.OptManifest,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.ClassTag, (java.lang.Class,scala.reflect.OptManifest,scala.collection.immutable.Seq)scala.reflect.ClassTag | |
method classType(scala.reflect.OptManifest,java.lang.Class,scala.collection.Seq)scala.reflect.ClassTag in object scala.reflect.ClassManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.OptManifest,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.ClassTag, (java.lang.Class,scala.reflect.OptManifest,scala.collection.immutable.Seq)scala.reflect.ClassTag | |
method abstractType(scala.reflect.Manifest,java.lang.String,java.lang.Class,scala.collection.Seq)scala.reflect.Manifest in object scala.reflect.ManifestFactory's type is different in 2.13.0-M4 version, where it is (scala.reflect.Manifest,java.lang.String,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.Manifest instead of (scala.reflect.Manifest,java.lang.String,java.lang.Class,scala.collection.Seq)scala.reflect.Manifest | |
method intersectionType(scala.collection.Seq)scala.reflect.Manifest in object scala.reflect.ManifestFactory's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.reflect.Manifest instead of (scala.collection.Seq)scala.reflect.Manifest | |
method classType(java.lang.Class,scala.reflect.Manifest,scala.collection.Seq)scala.reflect.Manifest in object scala.reflect.ManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.Manifest,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.Manifest, (java.lang.Class,scala.reflect.Manifest,scala.collection.immutable.Seq)scala.reflect.Manifest | |
method classType(scala.reflect.Manifest,java.lang.Class,scala.collection.Seq)scala.reflect.Manifest in object scala.reflect.ManifestFactory in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.reflect.Manifest,java.lang.Class,scala.collection.immutable.Seq)scala.reflect.Manifest, (java.lang.Class,scala.reflect.Manifest,scala.collection.immutable.Seq)scala.reflect.Manifest | |
method this(scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.Seq)Unit in class scala.reflect.ClassManifestFactory#AbstractTypeClassManifest's type is different in 2.13.0-M4 version, where it is (scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.immutable.Seq)Unit instead of (scala.reflect.OptManifest,java.lang.String,java.lang.Class,scala.collection.Seq)Unit | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.io.Source's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.io.Source's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.io.Source's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.io.Source's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method readLine(java.lang.String,scala.collection.Seq)java.lang.String in object scala.io.StdIn's type is different in 2.13.0-M4 version, where it is (java.lang.String,scala.collection.immutable.Seq)java.lang.String instead of (java.lang.String,scala.collection.Seq)java.lang.String | |
method readLine(java.lang.String,scala.collection.Seq)java.lang.String in interface scala.io.StdIn's type is different in 2.13.0-M4 version, where it is (java.lang.String,scala.collection.immutable.Seq)java.lang.String instead of (java.lang.String,scala.collection.Seq)java.lang.String | |
deprecated method valueOf(Float)scala.math.BigDecimal in object scala.math.BigDecimal in 2.13.0-M4 version does not have a correspondent with same parameter signature among (Double)scala.math.BigDecimal, (Long)scala.math.BigDecimal | |
deprecated method apply(Float)scala.math.BigDecimal in object scala.math.BigDecimal in 2.13.0-M4 version does not have a correspondent with same parameter signature among (Long)scala.math.BigDecimal, (scala.math.BigInt)scala.math.BigDecimal, (Int)scala.math.BigDecimal, (java.math.BigDecimal)scala.math.BigDecimal, (java.lang.String)scala.math.BigDecimal, (Array[Char])scala.math.BigDecimal, (Double)scala.math.BigDecimal | |
deprecated method apply(Float,java.math.MathContext)scala.math.BigDecimal in object scala.math.BigDecimal in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.lang.String,java.math.MathContext)scala.math.BigDecimal, (Long,java.math.MathContext)scala.math.BigDecimal, (Long,Int)scala.math.BigDecimal, (scala.math.BigInt,Int)scala.math.BigDecimal, (scala.math.BigInt,java.math.MathContext)scala.math.BigDecimal, (Int,java.math.MathContext)scala.math.BigDecimal, (Array[Char],java.math.MathContext)scala.math.BigDecimal, (Double,java.math.MathContext)scala.math.BigDecimal | |
deprecated method apply(java.math.BigDecimal,java.math.MathContext)scala.math.BigDecimal in object scala.math.BigDecimal in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.lang.String,java.math.MathContext)scala.math.BigDecimal, (Long,java.math.MathContext)scala.math.BigDecimal, (Long,Int)scala.math.BigDecimal, (scala.math.BigInt,Int)scala.math.BigDecimal, (scala.math.BigInt,java.math.MathContext)scala.math.BigDecimal, (Int,java.math.MathContext)scala.math.BigDecimal, (Array[Char],java.math.MathContext)scala.math.BigDecimal, (Double,java.math.MathContext)scala.math.BigDecimal | |
method firstCompletedOf(scala.collection.TraversableOnce,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
deprecated method reduce(scala.collection.TraversableOnce,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
deprecated method fold(scala.collection.TraversableOnce,java.lang.Object,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,java.lang.Object,scala.Function2,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
method traverse(scala.collection.TraversableOnce,scala.Function1,scala.collection.generic.CanBuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,scala.Function1,scala.collection.BuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,scala.Function1,scala.collection.generic.CanBuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
method sequence(scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,scala.collection.BuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
deprecated method find(scala.collection.TraversableOnce,scala.Function1,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.Future's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Iterable,scala.Function1,scala.concurrent.ExecutionContext)scala.concurrent.Future instead of (scala.collection.TraversableOnce,scala.Function1,scala.concurrent.ExecutionContext)scala.concurrent.Future | |
method apply(scala.collection.Seq)scala.collection.Iterator in object scala.collection.Iterator's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.Iterator instead of (scala.collection.Seq)scala.collection.Iterator | |
method ++(scala.collection.GenTraversableOnce)scala.collection.Map in class scala.collection.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.IterableOps instead of (scala.collection.GenTraversableOnce)scala.collection.Map | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.collection.AbstractIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.collection.AbstractIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.collection.AbstractIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method empty(scala.math.Ordering)scala.collection.immutable.SortedSet in object scala.collection.SortedSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)java.lang.Object instead of (scala.math.Ordering)scala.collection.immutable.SortedSet | |
method sameElements(scala.collection.Iterator)Boolean in interface scala.collection.Iterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in interface scala.collection.Iterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method zip(scala.collection.Iterator)scala.collection.Iterator in interface scala.collection.Iterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method &~(scala.collection.GenSet)java.lang.Object in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method --(scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable | |
method ++(scala.collection.GenTraversableOnce)scala.collection.Set in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenTraversableOnce)scala.collection.Set | |
method &(scala.collection.GenSet)java.lang.Object in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method intersect(scala.collection.GenSet)java.lang.Object in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method |(scala.collection.GenSet)java.lang.Object in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method union(scala.collection.GenSet)scala.collection.Set in class scala.collection.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)scala.collection.Set | |
method this(scala.collection.SeqLike)Unit in class scala.collection.Searching#SearchImpl's type is different in 2.13.0-M4 version, where it is (scala.collection.SeqOps)Unit instead of (scala.collection.SeqLike)Unit | |
method apply(scala.collection.Seq)scala.collection.BitSet in object scala.collection.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.collection.BitSet | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.Iterator#ConcatIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.collection.Iterator#ConcatIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.collection.Iterator#ConcatIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.collection.Iterator#ConcatIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method diff(scala.collection.GenSeq)java.lang.Object in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq)java.lang.Object instead of (scala.collection.GenSeq)java.lang.Object | |
method corresponds(scala.collection.GenSeq,scala.Function2)Boolean in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,scala.Function2)Boolean instead of (scala.collection.GenSeq,scala.Function2)Boolean | |
method intersect(scala.collection.GenSeq)java.lang.Object in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq)java.lang.Object instead of (scala.collection.GenSeq)java.lang.Object | |
method lastIndexOfSlice(scala.collection.GenSeq,Int)Int in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,Int)Int instead of (scala.collection.GenSeq,Int)Int | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method containsSlice(scala.collection.GenSeq)Boolean in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq)Boolean instead of (scala.collection.GenSeq)Boolean | |
method indexOfSlice(scala.collection.GenSeq,Int)Int in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,Int)Int instead of (scala.collection.GenSeq,Int)Int | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.AbstractSeq's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method apply(scala.collection.Seq)scala.collection.immutable.LongMap in object scala.collection.immutable.LongMap's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.immutable.LongMap instead of (scala.collection.Seq)scala.collection.immutable.LongMap | |
method -(Int)scala.collection.immutable.IntMap in class scala.collection.immutable.IntMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.immutable.MapOps instead of (Int)scala.collection.immutable.IntMap | |
method &~(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method &(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method -(Int)scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.immutable.SetOps instead of (Int)scala.collection.immutable.BitSet | |
method subsetOf(scala.collection.BitSet)Boolean in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.BitSet)Boolean | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method +(Int)scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.SetOps instead of (Int)scala.collection.immutable.BitSet | |
method |(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.immutable.VectorBuilder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.immutable.VectorBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.immutable.VectorBuilder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.immutable.VectorBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method ++=(scala.collection.TraversableOnce)scala.collection.immutable.VectorBuilder in class scala.collection.immutable.VectorBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.immutable.VectorBuilder | |
method diff(scala.collection.GenSet)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.immutable.HashSet instead of (scala.collection.GenSet)scala.collection.immutable.HashSet | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.immutable.HashSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method intersect(scala.collection.GenSet)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.immutable.HashSet instead of (scala.collection.GenSet)scala.collection.immutable.HashSet | |
method union(scala.collection.GenSet)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)scala.collection.immutable.HashSet | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.IterableOps instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.SortedMap | |
method apply(scala.collection.Seq)scala.collection.immutable.IntMap in object scala.collection.immutable.IntMap's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.immutable.IntMap instead of (scala.collection.Seq)scala.collection.immutable.IntMap | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.Map | |
method flatMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.Function1,scala.math.Ordering)scala.collection.Map instead of (scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method --(scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.immutable.MapOps instead of (scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable | |
method collect(scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.PartialFunction,scala.math.Ordering)scala.collection.Map instead of (scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.lang.Object)java.lang.Object, (scala.collection.Factory)java.lang.Object | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable,scala.math.Ordering)scala.collection.Map instead of (scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.Map instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.TreeMap | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.Function1,scala.math.Ordering)scala.collection.Map instead of (scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method apply(scala.collection.Seq)scala.collection.immutable.Queue in object scala.collection.immutable.Queue's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.immutable.Queue instead of (scala.collection.Seq)scala.collection.immutable.Queue | |
method apply(scala.collection.Seq)scala.collection.BitSet in object scala.collection.immutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.collection.BitSet | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.Map | |
method empty(scala.math.Ordering)scala.collection.immutable.SortedSet in object scala.collection.immutable.SortedSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)java.lang.Object instead of (scala.math.Ordering)scala.collection.immutable.SortedSet | |
method apply(scala.collection.Seq)scala.collection.immutable.List in object scala.collection.immutable.List's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.immutable.List instead of (scala.collection.Seq)scala.collection.immutable.List | |
method corresponds(scala.collection.GenSeq,scala.Function2)Boolean in class scala.collection.immutable.List's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,scala.Function2)Boolean instead of (scala.collection.GenSeq,scala.Function2)Boolean | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.List's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method &~(scala.collection.GenSet)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method flatMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.Function1,scala.math.Ordering)scala.collection.SortedSet instead of (scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method --(scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable | |
method diff(scala.collection.GenSet)scala.collection.Set in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)scala.collection.Set | |
method collect(scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.PartialFunction,scala.math.Ordering)scala.collection.SortedSet instead of (scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.lang.Object)java.lang.Object, (scala.collection.Factory)java.lang.Object | |
method ++(scala.collection.GenTraversableOnce)scala.collection.Set in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.Set | |
method &(scala.collection.GenSet)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method intersect(scala.collection.GenSet)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable,scala.math.Ordering)scala.collection.SortedSet instead of (scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method |(scala.collection.GenSet)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method union(scala.collection.GenSet)scala.collection.Set in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)scala.collection.Set | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet's type is different in 2.13.0-M4 version, where it is (scala.Function1,scala.math.Ordering)scala.collection.SortedSet instead of (scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.collection.immutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method corresponds(scala.collection.GenSeq,scala.Function2)Boolean in class scala.collection.immutable.Queue's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,scala.Function2)Boolean instead of (scala.collection.GenSeq,scala.Function2)Boolean | |
method enqueue(scala.collection.immutable.Iterable)scala.collection.immutable.Queue in class scala.collection.immutable.Queue in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Iterable)scala.collection.immutable.Queue, (java.lang.Object)scala.collection.immutable.Queue | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.WrappedString's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.immutable.WrappedString's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.immutable.WrappedString's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.ListMap | |
method filteredTail(scala.collection.immutable.Stream,scala.Function1,Boolean)scala.collection.immutable.Stream#Cons in object scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.LinearSeq,scala.Function1,Boolean)scala.collection.immutable.LinearSeq instead of (scala.collection.immutable.Stream,scala.Function1,Boolean)scala.collection.immutable.Stream#Cons | |
method iterate(java.lang.Object,scala.Function1)scala.collection.immutable.Stream in object scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.Function0,scala.Function1)scala.collection.immutable.LinearSeq instead of (java.lang.Object,scala.Function1)scala.collection.immutable.Stream | |
method apply(scala.collection.Seq)scala.collection.immutable.Stream in object scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.collection.immutable.Stream | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.Stream#Cons's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method ++(scala.collection.GenTraversableOnce)scala.collection.immutable.ListSet in class scala.collection.immutable.ListSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.immutable.ListSet | |
method corresponds(scala.collection.GenSeq,scala.Function2)Boolean in class scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,scala.Function2)Boolean instead of (scala.collection.GenSeq,scala.Function2)Boolean | |
method append(scala.Function0)scala.collection.immutable.Stream in class scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.immutable.Stream instead of (scala.Function0)scala.collection.immutable.Stream | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.Stream's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method -(Long)scala.collection.immutable.LongMap in class scala.collection.immutable.LongMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.immutable.MapOps instead of (Long)scala.collection.immutable.LongMap | |
method insertAll(Int,scala.collection.Traversable)Unit in class scala.collection.convert.Wrappers#JListWrapper's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.IterableOnce)Unit instead of (Int,scala.collection.Traversable)Unit | |
method +=(scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike in class scala.collection.convert.Wrappers#JConcurrentMapWrapper's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike | |
method +=(scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike in class scala.collection.convert.Wrappers#JMapWrapper's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike | |
method +=(scala.Tuple2)scala.collection.convert.Wrappers#JDictionaryWrapper in class scala.collection.convert.Wrappers#JDictionaryWrapper's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.convert.Wrappers#JDictionaryWrapper | |
method +=(scala.Tuple2)scala.collection.convert.Wrappers#JPropertiesWrapper in class scala.collection.convert.Wrappers#JPropertiesWrapper's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.convert.Wrappers#JPropertiesWrapper | |
method -=(java.lang.String)scala.collection.convert.Wrappers#JPropertiesWrapper in class scala.collection.convert.Wrappers#JPropertiesWrapper's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Shrinkable instead of (java.lang.String)scala.collection.convert.Wrappers#JPropertiesWrapper | |
method +=(scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike in interface scala.collection.convert.Wrappers#JMapWrapperLike's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.convert.Wrappers#JMapWrapperLike | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMapIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.collection.concurrent.TrieMapIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method this(scala.collection.concurrent.MainNode,scala.collection.concurrent.Gen)Unit in class scala.collection.concurrent.INode's type is different in 2.13.0-M4 version, where it is (scala.collection.concurrent.Gen,scala.math.Equiv)Unit instead of (scala.collection.concurrent.MainNode,scala.collection.concurrent.Gen)Unit | |
method transform(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (scala.Function1)scala.collection.mutable.IterableOps instead of (scala.Function2)scala.collection.mutable.MapLike | |
method --=(scala.collection.TraversableOnce)scala.collection.generic.Shrinkable in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Shrinkable instead of (scala.collection.TraversableOnce)scala.collection.generic.Shrinkable | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Map | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.concurrent.TrieMap in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.concurrent.TrieMap | |
method -=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Shrinkable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.concurrent.TrieMap's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method this(java.lang.Object,java.lang.Object)Unit in class scala.collection.concurrent.LNode's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.List,scala.math.Equiv)Unit instead of (java.lang.Object,java.lang.Object)Unit | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.SortedMap in interface scala.collection.mutable.SortedMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.IterableOps instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.SortedMap | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuffer in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuffer | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method insertAll(Int,scala.collection.Traversable)Unit in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.IterableOnce)Unit instead of (Int,scala.collection.Traversable)Unit | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.mutable.ArrayBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method apply(scala.collection.Seq)scala.collection.mutable.AnyRefMap in object scala.collection.mutable.AnyRefMap's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.mutable.AnyRefMap instead of (scala.collection.Seq)scala.collection.mutable.AnyRefMap | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method corresponds(scala.collection.GenSeq,scala.Function2)Boolean in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,scala.Function2)Boolean instead of (scala.collection.GenSeq,scala.Function2)Boolean | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ListBuffer | |
method lastIndexOfSlice(scala.collection.GenSeq,Int)Int in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,Int)Int instead of (scala.collection.GenSeq,Int)Int | |
method containsSlice(scala.collection.GenSeq)Boolean in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq)Boolean instead of (scala.collection.GenSeq)Boolean | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method insertAll(Int,scala.collection.Traversable)Unit in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.IterableOnce)Unit instead of (Int,scala.collection.Traversable)Unit | |
method indexOfSlice(scala.collection.GenSeq,Int)Int in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Seq,Int)Int instead of (scala.collection.GenSeq,Int)Int | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.mutable.ListBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method transform(scala.Function2)scala.collection.mutable.TreeMap in class scala.collection.mutable.TreeMap's type is different in 2.13.0-M4 version, where it is (scala.Function1)scala.collection.mutable.IterableOps instead of (scala.Function2)scala.collection.mutable.TreeMap | |
method +=(scala.Tuple2)scala.collection.mutable.TreeMap in class scala.collection.mutable.TreeMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.TreeMap | |
method apply(scala.collection.Seq)scala.collection.BitSet in object scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.collection.BitSet | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.LongMap in class scala.collection.mutable.LongMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.mutable.LongMap instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.LongMap | |
method +=(scala.Tuple2)scala.collection.mutable.LongMap in class scala.collection.mutable.LongMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.LongMap | |
method -=(Long)scala.collection.mutable.LongMap in class scala.collection.mutable.LongMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Shrinkable instead of (Long)scala.collection.mutable.LongMap | |
method apply(scala.collection.Seq)scala.collection.mutable.OpenHashMap in object scala.collection.mutable.OpenHashMap's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)java.lang.Object instead of (scala.collection.Seq)scala.collection.mutable.OpenHashMap | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.mutable.LongMap#LongMapBuilder in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.LongMap#LongMapBuilder | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.LongMap#LongMapBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method +=(Int)scala.collection.mutable.ArrayBuilder#ofInt in class scala.collection.mutable.ArrayBuilder#ofInt's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Int)scala.collection.mutable.ArrayBuilder#ofInt | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofInt in class scala.collection.mutable.ArrayBuilder#ofInt's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofInt | |
method +=(scala.runtime.BoxedUnit)scala.collection.mutable.ArrayBuilder#ofUnit in class scala.collection.mutable.ArrayBuilder#ofUnit's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.runtime.BoxedUnit)scala.collection.mutable.ArrayBuilder#ofUnit | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofUnit in class scala.collection.mutable.ArrayBuilder#ofUnit's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofUnit | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.ArrayBuilder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.ArrayBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.ArrayBuilder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.ArrayBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.ArrayBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method to(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.mutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.Factory)java.lang.Object instead of (scala.collection.generic.CanBuildFrom)java.lang.Object | |
method sameElements(scala.collection.Iterator)Boolean in class scala.collection.mutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.Iterator)Boolean | |
method zip(scala.collection.Iterator)scala.collection.Iterator in class scala.collection.mutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.Iterator instead of (scala.collection.Iterator)scala.collection.Iterator | |
method zipAll(scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator in class scala.collection.mutable.RedBlackTree#TreeIterator's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,java.lang.Object,java.lang.Object)scala.collection.Iterator instead of (scala.collection.Iterator,java.lang.Object,java.lang.Object)scala.collection.Iterator | |
method sizeHint(scala.collection.TraversableLike)Unit in interface scala.collection.mutable.Builder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in interface scala.collection.mutable.Builder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in interface scala.collection.mutable.Builder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method pushAll(scala.collection.TraversableOnce)scala.collection.mutable.Stack in class scala.collection.mutable.Stack's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Stack instead of (scala.collection.TraversableOnce)scala.collection.mutable.Stack | |
method push(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.mutable.Stack in class scala.collection.mutable.Stack's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Stack instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.mutable.Stack | |
method this(scala.collection.immutable.List)Unit in class scala.collection.mutable.Stack's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.immutable.List)Unit | |
method &~(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method &(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method subsetOf(scala.collection.BitSet)Boolean in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.BitSet)Boolean | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method +=(Int)scala.collection.mutable.BitSet in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Int)scala.collection.mutable.BitSet | |
method -=(Int)scala.collection.mutable.BitSet in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Shrinkable instead of (Int)scala.collection.mutable.BitSet | |
method remove(Int)Boolean in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)Boolean instead of (Int)Boolean | |
method |(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.BitSet)scala.collection.BitSetLike | |
method add(Int)Boolean in class scala.collection.mutable.BitSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)Boolean instead of (Int)Boolean | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.UnrolledBuffer's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.UnrolledBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.UnrolledBuffer's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method insertAll(Int,scala.collection.Traversable)Unit in class scala.collection.mutable.UnrolledBuffer's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.IterableOnce)Unit instead of (Int,scala.collection.Traversable)Unit | |
method enqueue(scala.collection.Seq)Unit in class scala.collection.mutable.Queue's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Queue instead of (scala.collection.Seq)Unit | |
method this(scala.collection.mutable.LinkedList,scala.collection.mutable.LinkedList,Int)Unit in class scala.collection.mutable.Queue's type is different in 2.13.0-M4 version, where it is (Array[java.lang.Object],Int,Int)Unit instead of (scala.collection.mutable.LinkedList,scala.collection.mutable.LinkedList,Int)Unit | |
method appendAll(scala.collection.TraversableOnce)scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder in 2.13.0-M4 version does not have a correspondent with same parameter signature among (Array[Char])scala.collection.mutable.StringBuilder, (scala.collection.IterableOnce)scala.collection.mutable.StringBuilder, (java.lang.String)scala.collection.mutable.StringBuilder | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method +=(Char)scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Char)scala.collection.mutable.StringBuilder | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.StringBuilder in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.IterableOnce)scala.collection.mutable.Growable, (java.lang.String)scala.collection.mutable.StringBuilder | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method insertAll(Int,scala.collection.TraversableOnce)scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder in 2.13.0-M4 version does not have a correspondent with same parameter signature among (Int,Array[Char])scala.collection.mutable.StringBuilder, (Int,scala.collection.IterableOnce)scala.collection.mutable.StringBuilder | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.mutable.StringBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method next_=(java.lang.Object)Unit in interface scala.collection.mutable.HashEntry's type is different in 2.13.0-M4 version, where it is (scala.collection.mutable.HashEntry)Unit instead of (java.lang.Object)Unit | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.AnyRefMap in class scala.collection.mutable.AnyRefMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.mutable.AnyRefMap instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.AnyRefMap | |
method +=(scala.Tuple2)scala.collection.mutable.AnyRefMap in class scala.collection.mutable.AnyRefMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.AnyRefMap | |
method --=(scala.collection.TraversableOnce)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Shrinkable instead of (scala.collection.TraversableOnce)scala.collection.generic.Shrinkable | |
method prependAll(scala.collection.TraversableOnce)Unit in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Buffer instead of (scala.collection.TraversableOnce)Unit | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.Buffer in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Buffer | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method -=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Shrinkable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable | |
method append(scala.collection.Seq)Unit in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Buffer instead of (scala.collection.Seq)Unit | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.AbstractBuffer's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.mutable.HashMap in class scala.collection.mutable.HashMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.HashMap | |
method +=(Char)scala.collection.mutable.ArrayBuilder#ofChar in class scala.collection.mutable.ArrayBuilder#ofChar's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Char)scala.collection.mutable.ArrayBuilder#ofChar | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofChar in class scala.collection.mutable.ArrayBuilder#ofChar's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofChar | |
method +=(Long)scala.collection.mutable.ArrayBuilder#ofLong in class scala.collection.mutable.ArrayBuilder#ofLong's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Long)scala.collection.mutable.ArrayBuilder#ofLong | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofLong in class scala.collection.mutable.ArrayBuilder#ofLong's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofLong | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.mutable.AnyRefMap#AnyRefMapBuilder in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.AnyRefMap#AnyRefMapBuilder | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.AnyRefMap#AnyRefMapBuilder's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method empty(scala.math.Ordering)scala.collection.mutable.SortedSet in object scala.collection.mutable.SortedSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object)java.lang.Object instead of (scala.math.Ordering)scala.collection.mutable.SortedSet | |
method transform(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.Function1)scala.collection.mutable.IterableOps instead of (scala.Function2)scala.collection.mutable.MapLike | |
method --=(scala.collection.TraversableOnce)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Shrinkable instead of (scala.collection.TraversableOnce)scala.collection.generic.Shrinkable | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Map | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method -=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Shrinkable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.AbstractMap's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.mutable.OpenHashMap in class scala.collection.mutable.OpenHashMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.OpenHashMap | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (Int)Unit instead of (scala.collection.TraversableLike)Unit | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Unit instead of (scala.collection.TraversableLike,Int)Unit | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.Iterable)Unit instead of (Int,scala.collection.TraversableLike)Unit | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.PriorityQueue in class scala.collection.mutable.PriorityQueue in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Iterable)java.lang.Object, (scala.collection.IterableOnce)scala.collection.mutable.PriorityQueue | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.PriorityQueue in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.PriorityQueue | |
method enqueue(scala.collection.Seq)Unit in class scala.collection.mutable.PriorityQueue's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)Unit instead of (scala.collection.Seq)Unit | |
method firstEntry_=(scala.collection.mutable.LinkedEntry)Unit in class scala.collection.mutable.LinkedHashMap's type is different in 2.13.0-M4 version, where it is (scala.collection.mutable.LinkedHashMap#LinkedEntry)Unit instead of (scala.collection.mutable.LinkedEntry)Unit | |
method lastEntry_=(scala.collection.mutable.LinkedEntry)Unit in class scala.collection.mutable.LinkedHashMap's type is different in 2.13.0-M4 version, where it is (scala.collection.mutable.LinkedHashMap#LinkedEntry)Unit instead of (scala.collection.mutable.LinkedEntry)Unit | |
method +=(scala.Tuple2)scala.collection.mutable.LinkedHashMap in class scala.collection.mutable.LinkedHashMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.LinkedHashMap | |
method +=(Short)scala.collection.mutable.ArrayBuilder#ofShort in class scala.collection.mutable.ArrayBuilder#ofShort's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Short)scala.collection.mutable.ArrayBuilder#ofShort | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofShort in class scala.collection.mutable.ArrayBuilder#ofShort's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofShort | |
method +=(Double)scala.collection.mutable.ArrayBuilder#ofDouble in class scala.collection.mutable.ArrayBuilder#ofDouble's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Double)scala.collection.mutable.ArrayBuilder#ofDouble | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofDouble in class scala.collection.mutable.ArrayBuilder#ofDouble's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofDouble | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.mutable.ArraySeq's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Boolean instead of (scala.collection.GenIterable)Boolean | |
method endsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.ArraySeq's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)Boolean instead of (scala.collection.GenSeq)Boolean | |
method startsWith(scala.collection.GenSeq,Int)Boolean in class scala.collection.mutable.ArraySeq's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Boolean instead of (scala.collection.GenSeq,Int)Boolean | |
method apply(scala.collection.Seq)scala.collection.mutable.LongMap in object scala.collection.mutable.LongMap's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.collection.mutable.LongMap instead of (scala.collection.Seq)scala.collection.mutable.LongMap | |
method +=(Float)scala.collection.mutable.ArrayBuilder#ofFloat in class scala.collection.mutable.ArrayBuilder#ofFloat's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Float)scala.collection.mutable.ArrayBuilder#ofFloat | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofFloat in class scala.collection.mutable.ArrayBuilder#ofFloat's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofFloat | |
method +=(scala.Tuple2)scala.collection.mutable.ListMap in class scala.collection.mutable.ListMap's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.ListMap | |
method transform(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (scala.Function1)scala.collection.mutable.IterableOps instead of (scala.Function2)scala.collection.mutable.MapLike | |
method --=(scala.collection.TraversableOnce)scala.collection.generic.Shrinkable in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Shrinkable instead of (scala.collection.TraversableOnce)scala.collection.generic.Shrinkable | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.Map in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Map | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method +=(scala.Tuple2)scala.collection.mutable.Map#WithDefault in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (scala.Tuple2)scala.collection.mutable.Map#WithDefault | |
method -=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Shrinkable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.Map#WithDefault's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method +=(Boolean)scala.collection.mutable.ArrayBuilder#ofBoolean in class scala.collection.mutable.ArrayBuilder#ofBoolean's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Boolean)scala.collection.mutable.ArrayBuilder#ofBoolean | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofBoolean in class scala.collection.mutable.ArrayBuilder#ofBoolean's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofBoolean | |
method insertAll(Int,scala.collection.Traversable,scala.collection.mutable.UnrolledBuffer)Unit in class scala.collection.mutable.UnrolledBuffer#Unrolled's type is different in 2.13.0-M4 version, where it is (Int,scala.collection.IterableOnce,scala.collection.mutable.UnrolledBuffer)Int instead of (Int,scala.collection.Traversable,scala.collection.mutable.UnrolledBuffer)Unit | |
method &~(scala.collection.GenSet)java.lang.Object in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method --(scala.collection.GenTraversableOnce)scala.collection.mutable.Set in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Set | |
method diff(scala.collection.GenSet)scala.collection.Set in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.mutable.SetOps instead of (scala.collection.GenSet)scala.collection.Set | |
method --=(scala.collection.TraversableOnce)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Shrinkable instead of (scala.collection.TraversableOnce)scala.collection.generic.Shrinkable | |
method ++(scala.collection.GenTraversableOnce)scala.collection.mutable.Set in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)java.lang.Object instead of (scala.collection.GenTraversableOnce)scala.collection.mutable.Set | |
method &(scala.collection.GenSet)java.lang.Object in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method subsetOf(scala.collection.GenSet)Boolean in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)Boolean instead of (scala.collection.GenSet)Boolean | |
method +=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Growable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Growable | |
method -=(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (java.lang.Object,java.lang.Object,scala.collection.immutable.Seq)scala.collection.mutable.Shrinkable instead of (java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Shrinkable | |
method intersect(scala.collection.GenSet)java.lang.Object in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Set)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method ++=(scala.collection.TraversableOnce)scala.collection.generic.Growable in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.generic.Growable | |
method |(scala.collection.GenSet)java.lang.Object in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)java.lang.Object | |
method union(scala.collection.GenSet)scala.collection.Set in class scala.collection.mutable.AbstractSet's type is different in 2.13.0-M4 version, where it is (scala.collection.Iterable)scala.collection.SetOps instead of (scala.collection.GenSet)scala.collection.Set | |
method +=(Byte)scala.collection.mutable.ArrayBuilder#ofByte in class scala.collection.mutable.ArrayBuilder#ofByte's type is different in 2.13.0-M4 version, where it is (java.lang.Object)scala.collection.mutable.Growable instead of (Byte)scala.collection.mutable.ArrayBuilder#ofByte | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofByte in class scala.collection.mutable.ArrayBuilder#ofByte's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofByte | |
method ++=(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofRef in class scala.collection.mutable.ArrayBuilder#ofRef's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)scala.collection.mutable.Growable instead of (scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuilder#ofRef | |
method shuffle(scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom)scala.collection.TraversableOnce in class scala.util.Random's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,scala.collection.BuildFrom)scala.collection.IterableOnce instead of (scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom)scala.collection.TraversableOnce | |
method stableSort(java.lang.Object,scala.reflect.ClassTag,scala.math.Ordering)Unit in object scala.util.Sorting in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,scala.Function2,scala.reflect.ClassTag)java.lang.Object, (scala.collection.Seq,scala.reflect.ClassTag,scala.math.Ordering)java.lang.Object | |
method stableSort(java.lang.Object,scala.Function2,scala.reflect.ClassTag)Unit in object scala.util.Sorting in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.Seq,scala.Function2,scala.reflect.ClassTag)java.lang.Object, (scala.collection.Seq,scala.reflect.ClassTag,scala.math.Ordering)java.lang.Object | |
method orderedHash(scala.collection.TraversableOnce)Int in object scala.util.hashing.MurmurHash3's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Int instead of (scala.collection.TraversableOnce)Int | |
method unorderedHash(scala.collection.TraversableOnce)Int in object scala.util.hashing.MurmurHash3's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce)Int instead of (scala.collection.TraversableOnce)Int | |
method orderedHash(scala.collection.TraversableOnce,Int)Int in class scala.util.hashing.MurmurHash3's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Int instead of (scala.collection.TraversableOnce,Int)Int | |
method unorderedHash(scala.collection.TraversableOnce,Int)Int in class scala.util.hashing.MurmurHash3's type is different in 2.13.0-M4 version, where it is (scala.collection.IterableOnce,Int)Int instead of (scala.collection.TraversableOnce,Int)Int | |
method this(java.lang.CharSequence,java.util.regex.Matcher,scala.collection.Seq)Unit in class scala.util.matching.Regex#Match's type is different in 2.13.0-M4 version, where it is (java.lang.CharSequence,java.util.regex.Matcher,scala.collection.immutable.Seq)Unit instead of (java.lang.CharSequence,java.util.regex.Matcher,scala.collection.Seq)Unit | |
method this(java.lang.CharSequence,scala.util.matching.Regex,scala.collection.Seq)Unit in class scala.util.matching.Regex#MatchIterator's type is different in 2.13.0-M4 version, where it is (java.lang.CharSequence,scala.util.matching.Regex,scala.collection.immutable.Seq)Unit instead of (java.lang.CharSequence,scala.util.matching.Regex,scala.collection.Seq)Unit | |
deprecated method unapplySeq(java.lang.Object)scala.Option in class scala.util.matching.Regex in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.lang.CharSequence)scala.Option, (Char)scala.Option, (scala.util.matching.Regex#Match)scala.Option | |
method this(java.util.regex.Pattern,scala.collection.Seq)Unit in class scala.util.matching.Regex in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.util.regex.Pattern,scala.collection.immutable.Seq)Unit, (java.lang.String,scala.collection.immutable.Seq)Unit | |
method this(java.lang.String,scala.collection.Seq)Unit in class scala.util.matching.Regex in 2.13.0-M4 version does not have a correspondent with same parameter signature among (java.util.regex.Pattern,scala.collection.immutable.Seq)Unit, (java.lang.String,scala.collection.immutable.Seq)Unit | |
method unwrapping(scala.collection.Seq)scala.util.control.Exception#Catch in object scala.util.control.Exception's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.util.control.Exception#Catch instead of (scala.collection.Seq)scala.util.control.Exception#Catch | |
method ignoring(scala.collection.Seq)scala.util.control.Exception#Catch in object scala.util.control.Exception's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.util.control.Exception#Catch instead of (scala.collection.Seq)scala.util.control.Exception#Catch | |
method catchingPromiscuously(scala.collection.Seq)scala.util.control.Exception#Catch in object scala.util.control.Exception in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq)scala.util.control.Exception#Catch, (scala.PartialFunction)scala.util.control.Exception#Catch | |
method catching(scala.collection.Seq)scala.util.control.Exception#Catch in object scala.util.control.Exception in 2.13.0-M4 version does not have a correspondent with same parameter signature among (scala.collection.immutable.Seq)scala.util.control.Exception#Catch, (scala.PartialFunction)scala.util.control.Exception#Catch | |
method failAsValue(scala.collection.Seq,scala.Function0)scala.util.control.Exception#Catch in object scala.util.control.Exception's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq,scala.Function0)scala.util.control.Exception#Catch instead of (scala.collection.Seq,scala.Function0)scala.util.control.Exception#Catch | |
method handling(scala.collection.Seq)scala.util.control.Exception#By in object scala.util.control.Exception's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.util.control.Exception#By instead of (scala.collection.Seq)scala.util.control.Exception#By | |
method failing(scala.collection.Seq)scala.util.control.Exception#Catch in object scala.util.control.Exception's type is different in 2.13.0-M4 version, where it is (scala.collection.immutable.Seq)scala.util.control.Exception#Catch instead of (scala.collection.Seq)scala.util.control.Exception#Catch | |
== ReversedAbstractMethodProblem == | |
in 2.13.0-M4 version there is abstract method removed0(java.lang.Object,Int,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method union0(scala.collection.immutable.HashSet#LeafHashSet,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method union0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method subsetOf0(scala.collection.immutable.HashSet,Int)Boolean in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method intersect0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method filter0(scala.Function1,Boolean,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method get0(java.lang.Object,Int,Int)Boolean in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method updated0(java.lang.Object,Int,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method diff0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method removed0(java.lang.Object,Int,Int)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method contains0(java.lang.Object,Int,Int)Boolean in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method filter0(scala.Function1,Boolean,Int,Array[scala.collection.immutable.HashMap],Int)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method merge0(scala.collection.immutable.HashMap,Int,scala.collection.immutable.HashMap#Merger)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method get0(java.lang.Object,Int,Int)scala.Option in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method updated0(java.lang.Object,Int,Int,java.lang.Object,scala.Tuple2,scala.collection.immutable.HashMap#Merger)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method isInclusive()Boolean in class scala.collection.immutable.Range, which does not have a correspondent | |
in 2.13.0-M4 version there is abstract method update(Int,java.lang.Object)Unit in class scala.collection.mutable.ArraySeq, which does not have a correspondent | |
== MissingFieldProblem == | |
field serialVersionUID in object scala.None does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.Enumeration#Value does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.Enumeration#Val does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.Option does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.Some does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.Enumeration does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyRef does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyDouble does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyChar does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyUnit does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyShort does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyInt does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyByte does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyLong does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyBoolean does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.runtime.LazyFloat does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ClassTag#GenericClassTag does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#IntersectionTypeManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#ShortManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#AnyManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#IntManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#PhantomManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#NothingManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#ClassTypeManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.AnyValManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#LongManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#UnitManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#DoubleManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#NullManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#ObjectManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#FloatManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#ByteManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#WildcardManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#BooleanManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#AnyValPhantomManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#SingletonTypeManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ClassManifestFactory#AbstractTypeClassManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#AbstractTypeManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ManifestFactory#CharManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.reflect.ClassTypeManifest does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Set#Set3 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Set#Set4 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Map#Map2 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.Nil does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.ListSet#EmptyListSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Map#Map4 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Map#Map1 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.ListSet#Node does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.ListSerializeEnd does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.ListMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.List#SerializationProxy does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Set#Set2 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Stream#Cons does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.ListMap#Node does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.BitSet#BitSet1 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.ListSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.ListMap#EmptyListMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.:: does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Set#Set1 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.immutable.Map#Map3 does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.Map#EmptyMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.immutable.Set#EmptySet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.convert.Wrappers#SetWrapper does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.convert.Wrappers#MapWrapper does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.convert.Wrappers does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in object scala.collection.concurrent.TrieMapSerializationEnd does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.UnrolledBuffer does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.StringBuilder does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.AnyRefMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.RedBlackTree#Tree does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.LinkedHashMap does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.ArraySeq does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.AnyRefMap#ExceptionDefault does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.collection.mutable.RedBlackTree#Node does not have a correspondent in 2.13.0-M4 version | |
field serialVersionUID in class scala.util.matching.Regex does not have a correspondent in 2.13.0-M4 version | |
== FinalMethodProblem == | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.io.Source is declared final in 2.13.0-M4 version | |
method length()Int in class scala.io.Source is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.io.Source is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.io.Source is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.io.Source is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.io.Source is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.io.Source is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.io.Source is declared final in 2.13.0-M4 version | |
method empty()scala.collection.Iterator in object scala.collection.Iterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterator is declared final in 2.13.0-M4 version | |
deprecated method prefixLength(scala.Function1)Int in class scala.collection.AbstractSeq is declared final in 2.13.0-M4 version | |
method size()Int in class scala.collection.AbstractSeq is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method ordering()scala.math.Ordering in class scala.collection.immutable.BitSet is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toMap(scala.Predef#<:<)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method hasDefiniteSize()Boolean in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method updated(java.lang.Object,java.lang.Object)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap is declared final in 2.13.0-M4 version | |
method +(scala.Tuple2)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIndexedSeq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.NumericRange is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method lengthCompare(Int)Int in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method toList()scala.collection.immutable.List in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method forall(scala.Function1)Boolean in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method foldRight(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method contains(java.lang.Object)Boolean in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method find(scala.Function1)scala.Option in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method reverse()scala.collection.immutable.List in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
method exists(scala.Function1)Boolean in class scala.collection.immutable.List is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method hasDefiniteSize()Boolean in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.immutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIndexedSeq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.WrappedString is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIndexedSeq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.Range is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIndexedSeq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.Vector is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method hasDefiniteSize()Boolean in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.concurrent.TrieMapIterator is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method hasDefiniteSize()Boolean in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method prefixLength(scala.Function1)Int in class scala.collection.AbstractSeq is declared final in 2.13.0-M4 version | |
deprecated method hasDefiniteSize()Boolean in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
deprecated method toStream()scala.collection.immutable.Stream in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
method length()Int in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
method ++(scala.Function0)scala.collection.Iterator in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method toIterator()scala.collection.Iterator in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method :\(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method /:(java.lang.Object,scala.Function2)java.lang.Object in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
deprecated method copyToBuffer(scala.collection.mutable.Buffer)Unit in class scala.collection.mutable.RedBlackTree#TreeIterator is declared final in 2.13.0-M4 version | |
method top()java.lang.Object in class scala.collection.mutable.Stack is declared final in 2.13.0-M4 version | |
method ordering()scala.math.Ordering in class scala.collection.mutable.BitSet is declared final in 2.13.0-M4 version | |
method nwords()Int in class scala.collection.mutable.BitSet is declared final in 2.13.0-M4 version | |
method word(Int)Long in class scala.collection.mutable.BitSet is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method front()java.lang.Object in class scala.collection.mutable.Queue is declared final in 2.13.0-M4 version | |
deprecated method reverseContents()scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ListMap is declared final in 2.13.0-M4 version | |
method size()Int in class scala.collection.mutable.ListMap is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
deprecated method toBuffer()scala.collection.mutable.Buffer in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
deprecated method stringPrefix()java.lang.String in class scala.collection.AbstractIterable is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
method clear()Unit in class scala.collection.mutable.ArrayBuilder is declared final in 2.13.0-M4 version | |
== IncompatibleResultTypeProblem == | |
method longArrayOps(Array[Long])Array[Long] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Long] | |
method charArrayOps(Array[Char])Array[Char] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Char] | |
method unitArrayOps(Array[scala.runtime.BoxedUnit])Array[scala.runtime.BoxedUnit] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[scala.runtime.BoxedUnit] | |
method booleanArrayOps(Array[Boolean])Array[Boolean] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Boolean] | |
method floatArrayOps(Array[Float])Array[Float] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Float] | |
method intArrayOps(Array[Int])Array[Int] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Int] | |
method byteArrayOps(Array[Byte])Array[Byte] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Byte] | |
method shortArrayOps(Array[Short])Array[Short] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Short] | |
method refArrayOps(Array[java.lang.Object])Array[java.lang.Object] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[java.lang.Object] | |
method doubleArrayOps(Array[Double])Array[Double] in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[Double] | |
method genericArrayOps(java.lang.Object)scala.collection.mutable.ArrayOps in object scala.Predef has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.ArrayOps | |
method parts()scala.collection.Seq in class scala.StringContext has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method wrapCharArray(Array[Char])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofChar rather than scala.collection.mutable.WrappedArray | |
method wrapUnitArray(Array[scala.runtime.BoxedUnit])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofUnit rather than scala.collection.mutable.WrappedArray | |
method genericWrapArray(java.lang.Object)scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method wrapByteArray(Array[Byte])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofByte rather than scala.collection.mutable.WrappedArray | |
method wrapLongArray(Array[Long])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofLong rather than scala.collection.mutable.WrappedArray | |
method wrapRefArray(Array[java.lang.Object])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofRef rather than scala.collection.mutable.WrappedArray | |
method wrapFloatArray(Array[Float])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofFloat rather than scala.collection.mutable.WrappedArray | |
method wrapIntArray(Array[Int])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofInt rather than scala.collection.mutable.WrappedArray | |
method wrapDoubleArray(Array[Double])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofDouble rather than scala.collection.mutable.WrappedArray | |
method wrapBooleanArray(Array[Boolean])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofBoolean rather than scala.collection.mutable.WrappedArray | |
method wrapShortArray(Array[Short])scala.collection.mutable.WrappedArray in class scala.LowPriorityImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq#ofShort rather than scala.collection.mutable.WrappedArray | |
method IndexedSeq()scala.collection.IndexedSeq# in object scala.package has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.IndexedSeq# rather than scala.collection.IndexedSeq# | |
method :+()scala.collection.:+# in object scala.package has a different result type in 2.13.0-M4 version, where it is scala.collection.package#:+# rather than scala.collection.:+# | |
method +:()scala.collection.+:# in object scala.package has a different result type in 2.13.0-M4 version, where it is scala.collection.package#+:# rather than scala.collection.+:# | |
method Seq()scala.collection.Seq# in object scala.package has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq# rather than scala.collection.Seq# | |
method Traversable()scala.collection.Traversable# in object scala.package has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable# rather than scala.collection.Traversable# | |
method range(java.lang.Object,java.lang.Object)scala.collection.SortedSet in class scala.Enumeration#ValueSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method seq()scala.collection.immutable.Set in class scala.Enumeration#ValueSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method until(java.lang.Object)scala.collection.SortedSet in class scala.Enumeration#ValueSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method from(java.lang.Object)scala.collection.SortedSet in class scala.Enumeration#ValueSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method to(java.lang.Object)scala.collection.generic.Sorted in class scala.Enumeration#ValueSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.generic.Sorted | |
method allThreads()scala.collection.IndexedSeq in object scala.sys.package has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.IndexedSeq rather than scala.collection.IndexedSeq | |
method applySeq(scala.collection.Seq,scala.Function1)scala.collection.Seq in object scala.sys.process.Process has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method buildersToProcess(scala.collection.Seq,scala.Function1)scala.collection.Seq in object scala.sys.process.package has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method applySeq(scala.collection.Seq,scala.Function1)scala.collection.Seq in interface scala.sys.process.ProcessCreation has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method buildersToProcess(scala.collection.Seq,scala.Function1)scala.collection.Seq in interface scala.sys.process.ProcessImplicits has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
extension method coll1$extension(scala.Tuple2)scala.collection.TraversableLike in object scala.runtime.Tuple2Zipped has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.TraversableLike | |
extension method coll2$extension(scala.Tuple2)scala.collection.IterableLike in object scala.runtime.Tuple2Zipped has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.IterableLike | |
extension method coll1$extension(scala.Tuple3)scala.collection.TraversableLike in object scala.runtime.Tuple3Zipped has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.TraversableLike | |
extension method coll2$extension(scala.Tuple3)scala.collection.IterableLike in object scala.runtime.Tuple3Zipped has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.IterableLike | |
extension method coll3$extension(scala.Tuple3)scala.collection.IterableLike in object scala.runtime.Tuple3Zipped has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.IterableLike | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ClassTag#GenericClassTag has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#IntersectionTypeManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#ShortManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#IntManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#ClassTypeManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.AnyValManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#LongManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#UnitManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#DoubleManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#FloatManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#ByteManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#WildcardManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#BooleanManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in interface scala.reflect.ClassManifestDeprecatedApis has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#SingletonTypeManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ClassManifestFactory#AbstractTypeClassManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#AbstractTypeManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ManifestFactory#CharManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
deprecated method newWrappedArray(Int)scala.collection.mutable.WrappedArray in class scala.reflect.ClassTypeManifest has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArraySeq rather than scala.collection.mutable.WrappedArray | |
method toSeq()scala.collection.Seq in class scala.io.Source has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.io.Source has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.io.Source has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.io.Source has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method seq()scala.collection.LinearSeq in interface scala.collection.LinearSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.LinearSeq | |
method search(java.lang.Object,scala.collection.generic.IsSeqLike)scala.collection.Searching#SearchImpl in object scala.collection.Searching has a different result type in 2.13.0-M4 version, where it is scala.collection.SeqOps rather than scala.collection.Searching#SearchImpl | |
method seq()scala.collection.Map in class scala.collection.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Map | |
method toSeq()scala.collection.Seq in class scala.collection.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method filterNot(scala.Function1)scala.collection.Map in class scala.collection.AbstractMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.Map | |
method filterKeys(scala.Function1)scala.collection.Map in class scala.collection.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method mapValues(scala.Function1)scala.collection.Map in class scala.collection.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method +(scala.Tuple2)scala.collection.Map in interface scala.collection.DefaultMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.Map | |
method empty(scala.math.Ordering)scala.collection.SortedMap in object scala.collection.SortedMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedMap | |
method toSeq()scala.collection.Seq in class scala.collection.AbstractIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.AbstractIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.AbstractIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.collection.AbstractIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method seq()scala.collection.Map in interface scala.collection.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Map | |
method empty()scala.collection.immutable.Map in object scala.collection.Map has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Map | |
method copyToArray(java.lang.Object,Int,Int)Unit in interface scala.collection.Iterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method empty()scala.collection.Set in object scala.collection.Set has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.Set | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.AbstractIterable has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method view()scala.collection.IterableView in class scala.collection.AbstractIterable has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method view(Int,Int)scala.collection.IterableView in class scala.collection.AbstractIterable has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method seq()scala.collection.Set in class scala.collection.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Set | |
method toSeq()scala.collection.Seq in class scala.collection.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method empty()scala.collection.GenSet in class scala.collection.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Set rather than scala.collection.GenSet | |
method toSeq()scala.collection.Seq in class scala.collection.Iterator#ConcatIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.Iterator#ConcatIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.Iterator#ConcatIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.collection.Iterator#ConcatIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method seq()scala.collection.Seq in class scala.collection.AbstractSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Seq | |
method toSeq()scala.collection.Seq in class scala.collection.AbstractSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method view(Int,Int)scala.collection.SeqView in class scala.collection.AbstractSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.SeqView | |
method next()scala.collection.immutable.List in class scala.collection.Iterator#GroupedIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.immutable.List | |
method seq()scala.collection.Set in interface scala.collection.Set has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Set | |
method seq()scala.collection.IndexedSeq in interface scala.collection.IndexedSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.IndexedSeq | |
method seq()scala.collection.Seq in interface scala.collection.Seq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.Seq | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.Set#Set3 has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set3 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.Set | |
method +(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set3 has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.Set | |
method bigDecAsIntegral()scala.math.Numeric#BigDecimalAsIfIntegral# in object scala.collection.immutable.Range#Double has a different result type in 2.13.0-M4 version, where it is scala.math.Numeric#BigDecimalAsIfIntegral rather than scala.math.Numeric#BigDecimalAsIfIntegral# | |
method doubleAsIntegral()scala.math.Numeric#DoubleAsIfIntegral# in object scala.collection.immutable.Range#Double has a different result type in 2.13.0-M4 version, where it is scala.math.Numeric#DoubleAsIfIntegral rather than scala.math.Numeric#DoubleAsIfIntegral# | |
method apply(java.lang.Object,scala.Function0)scala.collection.immutable.Stream#Cons in object scala.collection.immutable.Stream#cons has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Stream rather than scala.collection.immutable.Stream#Cons | |
method tail()scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet#BitSetN has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.BitSet | |
method range(java.lang.Object,java.lang.Object)scala.collection.SortedSet in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method until(java.lang.Object)scala.collection.SortedSet in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method last()Int in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method ^(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.BitSetLike | |
method from(java.lang.Object)scala.collection.SortedSet in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method to(java.lang.Object)scala.collection.generic.Sorted in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.generic.Sorted | |
method empty()scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.immutable.BitSet | |
method rangeImpl(scala.Option,scala.Option)scala.collection.BitSetLike in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.BitSetLike | |
method head()Int in class scala.collection.immutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method empty()scala.collection.immutable.SortedSet in interface scala.collection.immutable.SortedSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedSet rather than scala.collection.immutable.SortedSet | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.Set#Set4 has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set4 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.Set | |
method +(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set4 has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map2 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map2 has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method seq()scala.collection.immutable.LinearSeq in interface scala.collection.immutable.LinearSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.LinearSeq | |
method +=(java.lang.Object)scala.collection.immutable.VectorBuilder in class scala.collection.immutable.VectorBuilder has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.immutable.VectorBuilder | |
method tail()scala.collection.immutable.List in object scala.collection.immutable.Nil has a different result type in 2.13.0-M4 version, where it is scala.runtime.Nothing# rather than scala.collection.immutable.List | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method empty()scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.HashSet | |
method -(java.lang.Object)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.HashSet | |
method +(java.lang.Object)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.HashSet | |
method seq()scala.collection.immutable.IndexedSeq in interface scala.collection.immutable.IndexedSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.IndexedSeq | |
method updated(java.lang.Object,java.lang.Object)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map rather than scala.collection.immutable.SortedMap | |
method empty()scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.SortedMap | |
method +(scala.Tuple2)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.SortedMap | |
method filterKeys(scala.Function1)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.SortedMap | |
method mapValues(scala.Function1)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.SortedMap | |
method seq()scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method empty()scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Map | |
method filterKeys(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.Map | |
method withDefault(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method mapValues(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.Map | |
method flatten(scala.Function1)scala.collection.GenTraversable in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method seq()scala.collection.immutable.Map in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Map | |
method until(java.lang.Object)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeMap | |
method withDefaultValue(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SortedMap#WithDefault rather than scala.collection.immutable.Map | |
method toSeq()scala.collection.Seq in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method from(java.lang.Object)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeMap | |
method to(java.lang.Object)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeMap | |
method -(java.lang.Object)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.TreeMap | |
method filterNot(scala.Function1)scala.collection.Map in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.Map | |
method empty()scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedMap rather than scala.collection.immutable.TreeMap | |
method transpose(scala.Function1)scala.collection.GenTraversable in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method withFilter(scala.Function1)scala.collection.generic.FilterMonadic in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedMapOps#WithFilter rather than scala.collection.generic.FilterMonadic | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method +(scala.Tuple2)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map rather than scala.collection.immutable.TreeMap | |
method view()scala.collection.IterableView in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method view(Int,Int)scala.collection.IterableView in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method filterKeys(scala.Function1)scala.collection.immutable.SortedMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.SortedMap | |
method withDefault(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SortedMap#WithDefault rather than scala.collection.immutable.Map | |
method mapValues(scala.Function1)scala.collection.immutable.SortedMap in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.SortedMap | |
method reversed()scala.collection.immutable.List in class scala.collection.immutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method apply(Int,Int,Int)scala.collection.immutable.Range in object scala.collection.immutable.Range has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Range#Exclusive rather than scala.collection.immutable.Range | |
method apply(Int,Int)scala.collection.immutable.Range in object scala.collection.immutable.Range has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Range#Exclusive rather than scala.collection.immutable.Range | |
method -(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map4 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map4 has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method seq()scala.collection.immutable.Set in interface scala.collection.immutable.Set has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method updated(java.lang.Object,java.lang.Object)scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method seq()scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method empty()scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method withDefault(scala.Function1)scala.collection.immutable.Map in interface scala.collection.immutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method seq()scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method -(java.lang.Object)scala.collection.immutable.Map#WithDefault in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map#WithDefault | |
method +(scala.Tuple2)scala.collection.immutable.Map#WithDefault in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map#WithDefault | |
method filterKeys(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.Map | |
method withDefault(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Map#WithDefault rather than scala.collection.immutable.Map | |
method mapValues(scala.Function1)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.immutable.Map | |
method -(java.lang.Object)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.HashMap | |
method empty()scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.HashMap | |
method seq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.NumericRange has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.IndexedSeq | |
method -(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map1 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map1 has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method -(java.lang.Object)scala.collection.immutable.ListSet in class scala.collection.immutable.ListSet#Node has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.ListSet | |
method +(java.lang.Object)scala.collection.immutable.ListSet in class scala.collection.immutable.ListSet#Node has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.ListSet | |
method iterator()scala.collection.immutable.TrieIterator in class scala.collection.immutable.HashSet#HashTrieSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterator rather than scala.collection.immutable.TrieIterator | |
method bigDecAsIntegral()scala.math.Numeric#BigDecimalAsIfIntegral# in object scala.collection.immutable.Range#BigDecimal has a different result type in 2.13.0-M4 version, where it is scala.math.Numeric#BigDecimalAsIfIntegral rather than scala.math.Numeric#BigDecimalAsIfIntegral# | |
method seq()scala.collection.immutable.LinearSeq in class scala.collection.immutable.List has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.LinearSeq | |
method drop(Int)scala.collection.immutable.List in class scala.collection.immutable.List has a different result type in 2.13.0-M4 version, where it is scala.collection.LinearSeq rather than scala.collection.immutable.List | |
method dropRight(Int)scala.collection.LinearSeqOptimized in class scala.collection.immutable.List has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.LinearSeqOptimized | |
method flatten(scala.Function1)scala.collection.GenTraversable in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method until(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeSet | |
method toSeq()scala.collection.Seq in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method from(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeSet | |
method to(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.TreeSet | |
method -(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.TreeSet | |
method empty()scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedSet rather than scala.collection.immutable.TreeSet | |
method transpose(scala.Function1)scala.collection.GenTraversable in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method withFilter(scala.Function1)scala.collection.generic.FilterMonadic in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedSetOps#WithFilter rather than scala.collection.generic.FilterMonadic | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method +(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.TreeSet | |
method view()scala.collection.IterableView in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method view(Int,Int)scala.collection.IterableView in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method reversed()scala.collection.immutable.List in class scala.collection.immutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method toSeq()scala.collection.Seq in class scala.collection.immutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.immutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.immutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.collection.immutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method seq()scala.collection.immutable.Seq in interface scala.collection.immutable.Seq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Seq | |
method seq()scala.collection.immutable.LinearSeq in class scala.collection.immutable.Queue has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.LinearSeq | |
method seq()scala.collection.immutable.Iterable in interface scala.collection.immutable.Iterable has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Iterable | |
method seq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.WrappedString has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.IndexedSeq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.immutable.WrappedString has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method seq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.Range has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.IndexedSeq | |
method toSeq()scala.collection.immutable.Range in class scala.collection.immutable.Range has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.immutable.Range | |
method toIterable()scala.collection.immutable.Range in class scala.collection.immutable.Range has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Range | |
method empty()scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.ListMap | |
method -(java.lang.Object)scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.ListMap | |
method +(scala.Tuple2)scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.ListMap | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.Set#Set2 has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set2 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.Set | |
method +(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set2 has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.Set | |
method range(java.lang.Object,java.lang.Object,java.lang.Object,scala.math.Integral)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method from(Int,Int)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.LinearSeq rather than scala.collection.immutable.Stream | |
method from(Int)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.LinearSeq rather than scala.collection.immutable.Stream | |
method continually(scala.Function0)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.LinearSeq rather than scala.collection.immutable.Stream | |
method tabulate(Int,scala.Function1)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method iterate(java.lang.Object,Int,scala.Function1)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method fill(Int,scala.Function0)scala.collection.immutable.Stream in object scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method empty(scala.math.Ordering)scala.collection.immutable.SortedMap in object scala.collection.immutable.SortedMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.SortedMap | |
method -(java.lang.Object)scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap#Node has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.ListMap | |
method +(scala.Tuple2)scala.collection.immutable.ListMap in class scala.collection.immutable.ListMap#Node has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.ListMap | |
method tail()scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet#BitSet1 has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.BitSet | |
method head()Int in class scala.collection.immutable.BitSet#BitSet1 has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.ListSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.ListSet in class scala.collection.immutable.ListSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.ListSet | |
method +(java.lang.Object)scala.collection.immutable.ListSet in class scala.collection.immutable.ListSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.ListSet | |
method tail()scala.runtime.Nothing# in object scala.collection.immutable.Stream#Empty has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Stream rather than scala.runtime.Nothing# | |
method seq()scala.collection.immutable.IndexedSeq in class scala.collection.immutable.Vector has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.IndexedSeq | |
method slice(Int,Int)scala.collection.immutable.Vector in class scala.collection.immutable.Vector has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Vector | |
method seq()scala.collection.immutable.Set in class scala.collection.immutable.Set#Set1 has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set1 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.Set | |
method +(java.lang.Object)scala.collection.immutable.Set in class scala.collection.immutable.Set#Set1 has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.Set | |
method flatten(scala.Function1)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method seq()scala.collection.immutable.LinearSeq in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.LinearSeq | |
method distinct()scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method takeWhile(scala.Function1)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method init()scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method take(Int)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method takeRight(Int)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method drop(Int)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.LinearSeq rather than scala.collection.immutable.Stream | |
method withFilter(scala.Function1)scala.collection.generic.FilterMonadic in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.WithFilter rather than scala.collection.generic.FilterMonadic | |
method filterImpl(scala.Function1,Boolean)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.LinearSeq rather than scala.collection.immutable.Stream | |
method view()scala.collection.immutable.StreamView in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.immutable.StreamView | |
method dropWhile(scala.Function1)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method slice(Int,Int)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method reverse()scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method dropRight(Int)scala.collection.immutable.Stream in class scala.collection.immutable.Stream has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.Stream | |
method -(java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map3 has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in class scala.collection.immutable.Map#Map3 has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method -(java.lang.Object)scala.collection.immutable.Map in object scala.collection.immutable.Map#EmptyMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.MapOps rather than scala.collection.immutable.Map | |
method +(scala.Tuple2)scala.collection.immutable.Map in object scala.collection.immutable.Map#EmptyMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.immutable.Map | |
method seq()scala.collection.immutable.Set in object scala.collection.immutable.Set#EmptySet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.Set | |
method -(java.lang.Object)scala.collection.immutable.Set in object scala.collection.immutable.Set#EmptySet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.SetOps rather than scala.collection.immutable.Set | |
method +(java.lang.Object)scala.collection.immutable.Set in object scala.collection.immutable.Set#EmptySet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.immutable.Set | |
method tail()scala.collection.immutable.BitSet in class scala.collection.immutable.BitSet#BitSet2 has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.immutable.BitSet | |
method head()Int in class scala.collection.immutable.BitSet#BitSet2 has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method +=(java.lang.Object)scala.collection.convert.Wrappers#JSetWrapper in class scala.collection.convert.Wrappers#JSetWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.convert.Wrappers#JSetWrapper | |
method -=(java.lang.Object)scala.collection.convert.Wrappers#JSetWrapper in class scala.collection.convert.Wrappers#JSetWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.convert.Wrappers#JSetWrapper | |
method +=:(java.lang.Object)scala.collection.convert.Wrappers#JListWrapper in class scala.collection.convert.Wrappers#JListWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Buffer rather than scala.collection.convert.Wrappers#JListWrapper | |
method +=(java.lang.Object)scala.collection.convert.Wrappers#JListWrapper in class scala.collection.convert.Wrappers#JListWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.convert.Wrappers#JListWrapper | |
method -=(java.lang.Object)scala.collection.convert.Wrappers#JMapWrapperLike in class scala.collection.convert.Wrappers#JConcurrentMapWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.convert.Wrappers#JMapWrapperLike | |
method -=(java.lang.Object)scala.collection.convert.Wrappers#JMapWrapperLike in class scala.collection.convert.Wrappers#JMapWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.convert.Wrappers#JMapWrapperLike | |
method -=(java.lang.Object)scala.collection.convert.Wrappers#JDictionaryWrapper in class scala.collection.convert.Wrappers#JDictionaryWrapper has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.convert.Wrappers#JDictionaryWrapper | |
method empty()scala.collection.mutable.Map in interface scala.collection.convert.Wrappers#JMapWrapperLike has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method -=(java.lang.Object)scala.collection.convert.Wrappers#JMapWrapperLike in interface scala.collection.convert.Wrappers#JMapWrapperLike has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.convert.Wrappers#JMapWrapperLike | |
method toSeq()scala.collection.Seq in class scala.collection.concurrent.TrieMapIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.concurrent.TrieMapIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.concurrent.TrieMapIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.collection.concurrent.TrieMapIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method flatten(scala.Function1)scala.collection.GenTraversable in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method seq()scala.collection.concurrent.TrieMap in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.concurrent.TrieMap | |
method withDefaultValue(java.lang.Object)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method toSeq()scala.collection.Seq in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method filterNot(scala.Function1)scala.collection.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.Map | |
method clone()scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method transpose(scala.Function1)scala.collection.GenTraversable in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.GenTraversable | |
method retain(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.MapOps rather than scala.collection.mutable.MapLike | |
method withFilter(scala.Function1)scala.collection.generic.FilterMonadic in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.WithFilter rather than scala.collection.generic.FilterMonadic | |
method -=(java.lang.Object)scala.collection.concurrent.TrieMap in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.concurrent.TrieMap | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method +(scala.Tuple2)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.Map | |
method view()scala.collection.IterableView in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method view(Int,Int)scala.collection.IterableView in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.IterableView | |
method filterKeys(scala.Function1)scala.collection.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method withDefault(scala.Function1)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method mapValues(scala.Function1)scala.collection.Map in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method reversed()scala.collection.immutable.List in class scala.collection.concurrent.TrieMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method empty()scala.collection.mutable.SortedMap in interface scala.collection.mutable.SortedMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.SortedMap | |
method +(scala.Tuple2)scala.collection.mutable.SortedMap in interface scala.collection.mutable.SortedMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.SortedMap | |
method seq()scala.collection.mutable.IndexedSeq in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.IndexedSeq | |
method +=:(java.lang.Object)scala.collection.mutable.ArrayBuffer in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Buffer rather than scala.collection.mutable.ArrayBuffer | |
method +=(java.lang.Object)scala.collection.mutable.ArrayBuffer in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.ArrayBuffer | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method view()scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArrayBufferView rather than scala.collection.mutable.IndexedSeqView | |
method view(Int,Int)scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.ArrayBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.mutable.IndexedSeqView | |
method +=:(java.lang.Object)scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Buffer rather than scala.collection.mutable.ListBuffer | |
method toSeq()scala.collection.Seq in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method clone()scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.ListBuffer | |
method +=(java.lang.Object)scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.ListBuffer | |
method -=(java.lang.Object)scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.ListBuffer | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.mutable.ListBuffer has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method empty()scala.collection.mutable.TreeMap in class scala.collection.mutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedMap rather than scala.collection.mutable.TreeMap | |
method -=(java.lang.Object)scala.collection.mutable.TreeMap in class scala.collection.mutable.TreeMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.TreeMap | |
method +=(java.lang.Object)scala.collection.mutable.LinkedHashSet in class scala.collection.mutable.LinkedHashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.LinkedHashSet | |
method -=(java.lang.Object)scala.collection.mutable.LinkedHashSet in class scala.collection.mutable.LinkedHashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.LinkedHashSet | |
method seq()scala.collection.mutable.Seq in class scala.collection.mutable.AbstractSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Seq | |
method transform(scala.Function1)scala.collection.mutable.SeqLike in class scala.collection.mutable.AbstractSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.IterableOps rather than scala.collection.mutable.SeqLike | |
method +(scala.Tuple2)scala.collection.mutable.LongMap in class scala.collection.mutable.LongMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.LongMap | |
method clone()scala.collection.mutable.HashSet in class scala.collection.mutable.HashSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.HashSet | |
method +=(java.lang.Object)scala.collection.mutable.HashSet in class scala.collection.mutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.HashSet | |
method -=(java.lang.Object)scala.collection.mutable.HashSet in class scala.collection.mutable.HashSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.HashSet | |
method seq()scala.collection.mutable.IndexedSeq in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.IndexedSeq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method view()scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.ArrayBufferView rather than scala.collection.mutable.IndexedSeqView | |
method view(Int,Int)scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.PriorityQueue#ResizableArrayAccess has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.mutable.IndexedSeqView | |
method empty(scala.math.Ordering)scala.collection.mutable.SortedMap in object scala.collection.mutable.SortedMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.SortedMap | |
method toSeq()scala.collection.Seq in class scala.collection.mutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method copyToArray(java.lang.Object,Int)Unit in class scala.collection.mutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method reversed()scala.collection.immutable.List in class scala.collection.mutable.RedBlackTree#TreeIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.immutable.List | |
method +=(java.lang.Object)scala.collection.mutable.Builder in interface scala.collection.mutable.Builder has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.Builder | |
method range(java.lang.Object,java.lang.Object)scala.collection.SortedSet in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method until(java.lang.Object)scala.collection.SortedSet in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method last()Int in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method ^(scala.collection.BitSet)scala.collection.BitSetLike in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.BitSetLike | |
method from(java.lang.Object)scala.collection.SortedSet in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.SortedSet | |
method to(java.lang.Object)scala.collection.generic.Sorted in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.generic.Sorted | |
method empty()scala.collection.mutable.BitSet in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.mutable.BitSet | |
method rangeImpl(scala.Option,scala.Option)scala.collection.BitSetLike in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is scala.collection.BitSet rather than scala.collection.BitSetLike | |
method head()Int in class scala.collection.mutable.BitSet has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Int | |
method +=:(java.lang.Object)scala.collection.mutable.UnrolledBuffer in class scala.collection.mutable.UnrolledBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Buffer rather than scala.collection.mutable.UnrolledBuffer | |
method +=(java.lang.Object)scala.collection.mutable.UnrolledBuffer in class scala.collection.mutable.UnrolledBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.UnrolledBuffer | |
method empty()scala.collection.mutable.Set in object scala.collection.mutable.Set has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Set | |
method seq()scala.collection.mutable.Seq in interface scala.collection.mutable.Seq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Seq | |
method tail()scala.collection.mutable.Queue in class scala.collection.mutable.Queue has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Queue | |
method dequeueAll(scala.Function1)scala.collection.mutable.Seq in class scala.collection.mutable.Queue has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.mutable.Seq | |
method seq()scala.collection.mutable.IndexedSeq in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.IndexedSeq | |
method setCharAt(Int,Char)Unit in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.StringBuilder rather than Unit | |
method clone()scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.StringBuilder | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method view()scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is scala.collection.IndexedSeqView rather than scala.collection.mutable.IndexedSeqView | |
method view(Int,Int)scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.mutable.IndexedSeqView | |
method reverse()scala.collection.mutable.StringBuilder in class scala.collection.mutable.StringBuilder has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.StringBuilder | |
method next()java.lang.Object in interface scala.collection.mutable.HashEntry has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.HashEntry rather than java.lang.Object | |
method -=(java.lang.Object)scala.collection.mutable.AnyRefMap in class scala.collection.mutable.AnyRefMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.AnyRefMap | |
method +(scala.Tuple2)scala.collection.mutable.AnyRefMap in class scala.collection.mutable.AnyRefMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.AnyRefMap | |
method clone()scala.collection.mutable.Buffer in class scala.collection.mutable.AbstractBuffer has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Buffer | |
method -=(java.lang.Object)scala.collection.mutable.Buffer in class scala.collection.mutable.AbstractBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.Buffer | |
method empty()scala.collection.mutable.HashMap in class scala.collection.mutable.HashMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.HashMap | |
method -=(java.lang.Object)scala.collection.mutable.HashMap in class scala.collection.mutable.HashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.HashMap | |
method empty()scala.collection.mutable.SortedSet in interface scala.collection.mutable.SortedSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedSet rather than scala.collection.mutable.SortedSet | |
method seq()scala.collection.mutable.Iterable in class scala.collection.mutable.AbstractIterable has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Iterable | |
method seq()scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method toSeq()scala.collection.Seq in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method empty()scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method clone()scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.MapOps rather than scala.collection.mutable.Map | |
method retain(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.MapOps rather than scala.collection.mutable.MapLike | |
method +(scala.Tuple2)scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.Map | |
method withDefault(scala.Function1)scala.collection.mutable.Map in class scala.collection.mutable.AbstractMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method empty()scala.collection.mutable.Map in object scala.collection.mutable.Map has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method empty()scala.collection.mutable.OpenHashMap in class scala.collection.mutable.OpenHashMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.OpenHashMap | |
method -=(java.lang.Object)scala.collection.mutable.OpenHashMap in class scala.collection.mutable.OpenHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.OpenHashMap | |
method retain(scala.Function2)scala.collection.mutable.OpenHashMap in class scala.collection.mutable.OpenHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.MapOps rather than scala.collection.mutable.OpenHashMap | |
method seq()scala.collection.mutable.IndexedSeq in interface scala.collection.mutable.IndexedSeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.IndexedSeq | |
method +=(java.lang.Object)scala.collection.mutable.PriorityQueue in class scala.collection.mutable.PriorityQueue has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.PriorityQueue | |
method firstEntry()scala.collection.mutable.LinkedEntry in class scala.collection.mutable.LinkedHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.LinkedHashMap#LinkedEntry rather than scala.collection.mutable.LinkedEntry | |
method -=(java.lang.Object)scala.collection.mutable.LinkedHashMap in class scala.collection.mutable.LinkedHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.LinkedHashMap | |
method filterKeys(scala.Function1)scala.collection.Map in class scala.collection.mutable.LinkedHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method mapValues(scala.Function1)scala.collection.Map in class scala.collection.mutable.LinkedHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.MapView rather than scala.collection.Map | |
method lastEntry()scala.collection.mutable.LinkedEntry in class scala.collection.mutable.LinkedHashMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.LinkedHashMap#LinkedEntry rather than scala.collection.mutable.LinkedEntry | |
method seq()scala.collection.mutable.Set in interface scala.collection.mutable.Set has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Set | |
method seq()scala.collection.mutable.IndexedSeq in class scala.collection.mutable.ArraySeq has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.IndexedSeq | |
method copyToArray(java.lang.Object,Int,Int)Unit in class scala.collection.mutable.ArraySeq has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Unit | |
method view()scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.ArraySeq has a different result type in 2.13.0-M4 version, where it is scala.collection.IndexedSeqView rather than scala.collection.mutable.IndexedSeqView | |
method view(Int,Int)scala.collection.mutable.IndexedSeqView in class scala.collection.mutable.ArraySeq has a different result type in 2.13.0-M4 version, where it is scala.collection.View rather than scala.collection.mutable.IndexedSeqView | |
method array()Array[java.lang.Object] in class scala.collection.mutable.ArraySeq has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than Array[java.lang.Object] | |
method seq()scala.collection.mutable.Iterable in interface scala.collection.mutable.Iterable has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Iterable | |
method empty()scala.collection.mutable.ListMap in class scala.collection.mutable.ListMap has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.ListMap | |
method -=(java.lang.Object)scala.collection.mutable.ListMap in class scala.collection.mutable.ListMap has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.ListMap | |
method empty()scala.collection.mutable.TreeSet in class scala.collection.mutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SortedSet rather than scala.collection.mutable.TreeSet | |
method +=(java.lang.Object)scala.collection.mutable.TreeSet in class scala.collection.mutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.TreeSet | |
method -=(java.lang.Object)scala.collection.mutable.TreeSet in class scala.collection.mutable.TreeSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.TreeSet | |
method seq()scala.collection.mutable.Map in interface scala.collection.mutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.mutable.Map in interface scala.collection.mutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method empty()scala.collection.mutable.Map in interface scala.collection.mutable.Map has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method withDefault(scala.Function1)scala.collection.mutable.Map in interface scala.collection.mutable.Map has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method seq()scala.collection.mutable.Map in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Map | |
method withDefaultValue(java.lang.Object)scala.collection.mutable.Map in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method toSeq()scala.collection.Seq in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method clone()scala.collection.mutable.Map in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is java.lang.Object rather than scala.collection.mutable.Map | |
method -=(java.lang.Object)scala.collection.mutable.Map#WithDefault in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Shrinkable rather than scala.collection.mutable.Map#WithDefault | |
method retain(scala.Function2)scala.collection.mutable.MapLike in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.MapOps rather than scala.collection.mutable.MapLike | |
method +(scala.Tuple2)scala.collection.mutable.Map#WithDefault in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.IterableOps rather than scala.collection.mutable.Map#WithDefault | |
method withDefault(scala.Function1)scala.collection.mutable.Map in class scala.collection.mutable.Map#WithDefault has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Map#WithDefault rather than scala.collection.mutable.Map | |
method newBuilder(scala.reflect.ClassTag)scala.collection.mutable.Builder in object scala.collection.mutable.UnrolledBuffer has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.UnrolledBuffer rather than scala.collection.mutable.Builder | |
method seq()scala.collection.mutable.Set in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.Iterable rather than scala.collection.mutable.Set | |
method toSeq()scala.collection.Seq in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method empty()scala.collection.GenSet in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.GenSet | |
method clone()scala.collection.mutable.Set in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.SetOps rather than scala.collection.mutable.Set | |
method retain(scala.Function1)Unit in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.SetOps rather than Unit | |
method +(java.lang.Object)scala.collection.mutable.Set in class scala.collection.mutable.AbstractSet has a different result type in 2.13.0-M4 version, where it is scala.collection.SetOps rather than scala.collection.mutable.Set | |
method +=(java.lang.Object)scala.collection.mutable.ArrayBuilder#ofRef in class scala.collection.mutable.ArrayBuilder#ofRef has a different result type in 2.13.0-M4 version, where it is scala.collection.mutable.Growable rather than scala.collection.mutable.ArrayBuilder#ofRef | |
method toSeq()scala.collection.Seq in class scala.util.Either#LeftProjection has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method toSeq()scala.collection.Seq in class scala.util.Either#RightProjection has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method alphanumeric()scala.collection.immutable.Stream in class scala.util.Random has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.LazyList rather than scala.collection.immutable.Stream | |
method groupNames()scala.collection.Seq in class scala.util.matching.Regex#Match has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method groupNames()scala.collection.Seq in interface scala.util.matching.Regex#MatchData has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
method groupNames()scala.collection.Seq in class scala.util.matching.Regex#MatchIterator has a different result type in 2.13.0-M4 version, where it is scala.collection.immutable.Seq rather than scala.collection.Seq | |
== FinalClassProblem == | |
class scala.collection.Searching#SearchImpl is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Set#Set3 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Set#Set4 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Map#Map2 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.HashSet#HashSetCollision1 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Map#Map4 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Map#Map1 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.HashSet#HashTrieSet is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.HashMap#HashTrieMap is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.HashSet#HashSet1 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Set#Set2 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.HashMap#HashMap1 is declared final in 2.13.0-M4 version | |
class scala.collection.immutable.Set#Set1 is declared final in 2.13.0-M4 version | |
class scala.collection.mutable.HashSet is declared final in 2.13.0-M4 version | |
class scala.util.Try#WithFilter is declared final in 2.13.0-M4 version | |
== DirectAbstractMethodProblem == | |
abstract method removed0(java.lang.Object,Int,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method union0(scala.collection.immutable.HashSet#LeafHashSet,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method union0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method subsetOf0(scala.collection.immutable.HashSet,Int)Boolean in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method intersect0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method filter0(scala.Function1,Boolean,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method get0(java.lang.Object,Int,Int)Boolean in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method diff0(scala.collection.immutable.HashSet,Int,Array[scala.collection.immutable.HashSet],Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method updated0(java.lang.Object,Int,Int)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
abstract method removed0(java.lang.Object,Int,Int)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method contains0(java.lang.Object,Int,Int)Boolean in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method filter0(scala.Function1,Boolean,Int,Array[scala.collection.immutable.HashMap],Int)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method merge0(scala.collection.immutable.HashMap,Int,scala.collection.immutable.HashMap#Merger)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method get0(java.lang.Object,Int,Int)scala.Option in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method updated0(java.lang.Object,Int,Int,java.lang.Object,scala.Tuple2,scala.collection.immutable.HashMap#Merger)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
abstract method isInclusive()Boolean in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
abstract method update(Int,java.lang.Object)Unit in class scala.collection.mutable.ArraySeq does not have a correspondent in 2.13.0-M4 version | |
== AbstractClassProblem == | |
class scala.collection.immutable.HashSet was concrete; is declared abstract in 2.13.0-M4 version | |
class scala.collection.immutable.HashMap was concrete; is declared abstract in 2.13.0-M4 version | |
class scala.collection.immutable.Range was concrete; is declared abstract in 2.13.0-M4 version | |
class scala.collection.mutable.ArraySeq was concrete; is declared abstract in 2.13.0-M4 version | |
== InheritedNewAbstractMethodProblem == | |
abstract method substituteBoth(java.lang.Object)java.lang.Object in class scala.Predef#<:< is inherited by class Predef$$eq$colon$eq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class SeqView in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$LinearSeqOps$$super$sameElements(scala.collection.IterableOnce)Boolean in interface scala.collection.LinearSeqOps is inherited by class LinearSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class LinearSeq in 2.13.0-M4 version. | |
abstract method diff(scala.collection.Set)scala.collection.SetOps in interface scala.collection.SetOps is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract method bitSetFactory()scala.collection.SpecificIterableFactory in interface scala.collection.BitSetOps is inherited by class BitSet in 2.13.0-M4 version. | |
abstract method diff(scala.collection.Set)scala.collection.SetOps in interface scala.collection.SetOps is inherited by class BitSet in 2.13.0-M4 version. | |
abstract method diff(scala.collection.Set)scala.collection.SetOps in interface scala.collection.SetOps is inherited by class AbstractSet in 2.13.0-M4 version. | |
abstract method diff(scala.collection.Set)scala.collection.SetOps in interface scala.collection.SetOps is inherited by class Set in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class IndexedSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class Seq in 2.13.0-M4 version. | |
abstract method incl(java.lang.Object)scala.collection.immutable.SetOps in interface scala.collection.immutable.SetOps is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract method excl(java.lang.Object)scala.collection.immutable.SetOps in interface scala.collection.immutable.SetOps is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$LinearSeqOps$$super$sameElements(scala.collection.IterableOnce)Boolean in interface scala.collection.LinearSeqOps is inherited by class LinearSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class LinearSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$immutable$IndexedSeqOps$$super$slice(Int,Int)java.lang.Object in interface scala.collection.immutable.IndexedSeqOps is inherited by class IndexedSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class IndexedSeq in 2.13.0-M4 version. | |
abstract method remove(java.lang.Object)scala.collection.immutable.MapOps in interface scala.collection.immutable.MapOps is inherited by class SortedMap in 2.13.0-M4 version. | |
abstract method remove(java.lang.Object)scala.collection.immutable.MapOps in interface scala.collection.immutable.MapOps is inherited by class AbstractMap in 2.13.0-M4 version. | |
abstract method incl(java.lang.Object)scala.collection.immutable.SetOps in interface scala.collection.immutable.SetOps is inherited by class Set in 2.13.0-M4 version. | |
abstract method excl(java.lang.Object)scala.collection.immutable.SetOps in interface scala.collection.immutable.SetOps is inherited by class Set in 2.13.0-M4 version. | |
abstract method remove(java.lang.Object)scala.collection.immutable.MapOps in interface scala.collection.immutable.MapOps is inherited by class Map in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class Seq in 2.13.0-M4 version. | |
abstract method headDefined()Boolean in interface scala.collection.immutable.LazyListOps is inherited by class Stream in 2.13.0-M4 version. | |
abstract method mapFactory()scala.collection.MapFactory in interface scala.collection.MapOps is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method coll()java.lang.Object in interface scala.collection.IterableOps is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method fromSpecificIterable(scala.collection.Iterable)java.lang.Object in interface scala.collection.IterableOps is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method newSpecificBuilder()scala.collection.mutable.Builder in interface scala.collection.IterableOps is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method iterableFactory()scala.collection.IterableFactory in interface scala.collection.IterableOps is inherited by class Wrappers$JMapWrapperLike in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Map in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class Map in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class SortedMap in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class SortedMap in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class AbstractSeq in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Buffer in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class Buffer in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class Buffer in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class Buffer in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class ArrayBuilder in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Builder in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class Seq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class Seq in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class MultiMap in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class MultiMap in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class AbstractBuffer in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class AbstractBuffer in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class AbstractBuffer in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract method get(java.lang.Object)scala.Option in interface scala.collection.mutable.SetOps is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class SortedSet in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class AbstractIterable in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class ReusableBuilder in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class AbstractMap in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class AbstractMap in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class IndexedSeq in 2.13.0-M4 version. | |
abstract synthetic method scala$collection$SeqOps$$super$concat(scala.collection.Iterable)java.lang.Object in interface scala.collection.SeqOps is inherited by class IndexedSeq in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Set in 2.13.0-M4 version. | |
abstract method get(java.lang.Object)scala.Option in interface scala.collection.mutable.SetOps is inherited by class Set in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class Set in 2.13.0-M4 version. | |
abstract method mapInPlace(scala.Function1)scala.collection.mutable.IterableOps in interface scala.collection.mutable.IterableOps is inherited by class Iterable in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class Map in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class Map in 2.13.0-M4 version. | |
abstract method addOne(java.lang.Object)scala.collection.mutable.Growable in interface scala.collection.mutable.Growable is inherited by class AbstractSet in 2.13.0-M4 version. | |
abstract method get(java.lang.Object)scala.Option in interface scala.collection.mutable.SetOps is inherited by class AbstractSet in 2.13.0-M4 version. | |
abstract method subtractOne(java.lang.Object)scala.collection.mutable.Shrinkable in interface scala.collection.mutable.Shrinkable is inherited by class AbstractSet in 2.13.0-M4 version. | |
== IncompatibleTemplateDefProblem == | |
declaration of interface scala.collection.mutable.FlatHashTable is class scala.collection.mutable.FlatHashTable in 2.13.0-M4 version; changing interface to class breaks client code | |
declaration of interface scala.collection.mutable.HashTable is class scala.collection.mutable.HashTable in 2.13.0-M4 version; changing interface to class breaks client code | |
== DirectMissingMethodProblem == | |
deprecated method __sequenceOfChars()scala.collection.IndexedSeq in class scala.Predef#SeqCharSequence does not have a correspondent in 2.13.0-M4 version | |
deprecated method readChar()Char in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readLong()Long in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readFloat()Float in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
method unaugmentString(java.lang.String)java.lang.String in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readf3(java.lang.String)scala.Tuple3 in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readf(java.lang.String)scala.collection.immutable.List in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readByte()Byte in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method conforms()scala.Predef#<:< in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readf2(java.lang.String)scala.Tuple2 in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readShort()Short in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method exceptionWrapper(java.lang.Throwable)java.lang.Throwable in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method classManifest(scala.reflect.ClassTag)scala.reflect.ClassTag in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method any2ArrowAssoc(java.lang.Object)java.lang.Object in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readInt()Int in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method seqToCharSequence(scala.collection.IndexedSeq)java.lang.CharSequence in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method any2stringfmt(java.lang.Object)java.lang.Object in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method ClassManifest()scala.reflect.ClassManifestFactory# in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readf1(java.lang.String)java.lang.Object in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method any2Ensuring(java.lang.Object)java.lang.Object in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
method StringCanBuildFrom()scala.collection.generic.CanBuildFrom in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readLine()java.lang.String in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readLine(java.lang.String,scala.collection.Seq)java.lang.String in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readBoolean()Boolean in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
method RichException(java.lang.Throwable)java.lang.Throwable in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method readDouble()Double in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
deprecated method arrayToCharSequence(Array[Char])java.lang.CharSequence in object scala.Predef does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
deprecated method __arrayOfChars()Array[Char] in class scala.Predef#ArrayCharSequence does not have a correspondent in 2.13.0-M4 version | |
method fallbackStringCanBuildFrom()scala.collection.generic.CanBuildFrom in class scala.LowPriorityImplicits does not have a correspondent in 2.13.0-M4 version | |
method unwrapString(scala.collection.immutable.WrappedString)java.lang.String in class scala.LowPriorityImplicits does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.reflect.ClassTag)scala.collection.generic.CanBuildFrom in object scala.Array does not have a correspondent in 2.13.0-M4 version | |
method #::()scala.collection.immutable.Stream##::# in object scala.package does not have a correspondent in 2.13.0-M4 version | |
method tpEquals()scala.Predef#=:= in object scala.Predef#=:= does not have a correspondent in 2.13.0-M4 version | |
deprecated method x()java.lang.Object in class scala.Some does not have a correspondent in 2.13.0-M4 version | |
method compare(java.lang.Object,java.lang.Object)Int in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
method keysIteratorFrom(scala.Enumeration#Value)scala.collection.Iterator in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
method hasAll(scala.collection.Iterator)Boolean in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
method keySet()scala.collection.SortedSet in class scala.Enumeration#ValueSet does not have a correspondent in 2.13.0-M4 version | |
deprecated method apply(scala.Function1)scala.PartialFunction in object scala.PartialFunction does not have a correspondent in 2.13.0-M4 version | |
deprecated method noTraceSupression()scala.sys.BooleanProp in object scala.sys.SystemProperties does not have a correspondent in 2.13.0-M4 version | |
method this(java.lang.String)Unit in class scala.sys.ShutdownHookThread does not have a correspondent in 2.13.0-M4 version | |
deprecated method javaVmArguments()scala.collection.immutable.List in object scala.sys.process.package does not have a correspondent in 2.13.0-M4 version | |
method apply(Boolean)scala.sys.process.BasicIO#Streamed in object scala.sys.process.BasicIO#Streamed does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines()scala.collection.immutable.Stream in class scala.sys.process.ProcessBuilderImpl#AbstractBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines(scala.sys.process.ProcessLogger)scala.collection.immutable.Stream in class scala.sys.process.ProcessBuilderImpl#AbstractBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines_!()scala.collection.immutable.Stream in class scala.sys.process.ProcessBuilderImpl#AbstractBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines_!(scala.sys.process.ProcessLogger)scala.collection.immutable.Stream in class scala.sys.process.ProcessBuilderImpl#AbstractBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines()scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines(scala.sys.process.ProcessLogger)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines_!()scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder does not have a correspondent in 2.13.0-M4 version | |
deprecated method lines_!(scala.sys.process.ProcessLogger)scala.collection.immutable.Stream in interface scala.sys.process.ProcessBuilder does not have a correspondent in 2.13.0-M4 version | |
method colls()scala.Tuple2 in class scala.runtime.Tuple2Zipped does not have a correspondent in 2.13.0-M4 version | |
deprecated method hash(java.lang.Object)Int in object scala.runtime.ScalaRunTime does not have a correspondent in 2.13.0-M4 version | |
method colls()scala.Tuple3 in class scala.runtime.Tuple3Zipped does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in class scala.io.Source does not have a correspondent in 2.13.0-M4 version | |
deprecated method valueOf(Double,java.math.MathContext)scala.math.BigDecimal in object scala.math.BigDecimal does not have a correspondent in 2.13.0-M4 version | |
deprecated method valueOf(Float,java.math.MathContext)scala.math.BigDecimal in object scala.math.BigDecimal does not have a correspondent in 2.13.0-M4 version | |
deprecated method isValidDouble()Boolean in class scala.math.BigDecimal does not have a correspondent in 2.13.0-M4 version | |
deprecated method isValidFloat()Boolean in class scala.math.BigDecimal does not have a correspondent in 2.13.0-M4 version | |
method onFailure(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in object scala.concurrent.Future#never does not have a correspondent in 2.13.0-M4 version | |
method onSuccess(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in object scala.concurrent.Future#never does not have a correspondent in 2.13.0-M4 version | |
deprecated method set(java.lang.Object)Unit in class scala.concurrent.SyncVar does not have a correspondent in 2.13.0-M4 version | |
deprecated method unset()Unit in class scala.concurrent.SyncVar does not have a correspondent in 2.13.0-M4 version | |
deprecated method promise()scala.concurrent.Promise in object scala.concurrent.package does not have a correspondent in 2.13.0-M4 version | |
deprecated method future(scala.Function0,scala.concurrent.ExecutionContext)scala.concurrent.Future in object scala.concurrent.package does not have a correspondent in 2.13.0-M4 version | |
deprecated method onFailure(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in interface scala.concurrent.Future does not have a correspondent in 2.13.0-M4 version | |
deprecated method onSuccess(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in interface scala.concurrent.Future does not have a correspondent in 2.13.0-M4 version | |
deprecated method onFailure(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#KeptPromise#Failed does not have a correspondent in 2.13.0-M4 version | |
method onSuccess(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#KeptPromise#Failed does not have a correspondent in 2.13.0-M4 version | |
method onFailure(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#KeptPromise#Successful does not have a correspondent in 2.13.0-M4 version | |
deprecated method onSuccess(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#KeptPromise#Successful does not have a correspondent in 2.13.0-M4 version | |
deprecated method onFailure(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#DefaultPromise does not have a correspondent in 2.13.0-M4 version | |
deprecated method onSuccess(scala.PartialFunction,scala.concurrent.ExecutionContext)Unit in class scala.concurrent.impl.Promise#DefaultPromise does not have a correspondent in 2.13.0-M4 version | |
method IteratorCanBuildFrom()scala.collection.TraversableOnce#BufferedCanBuildFrom in object scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.LinearSeq does not have a correspondent in 2.13.0-M4 version | |
method breakOut(scala.collection.generic.CanBuildFrom)scala.collection.generic.CanBuildFrom in object scala.collection.package does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method updated(java.lang.Object,java.lang.Object)scala.collection.Map in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method --(scala.collection.GenTraversableOnce)scala.collection.generic.Subtractable in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Subtractable in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.Map in class scala.collection.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object)scala.collection.Map in interface scala.collection.DefaultMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in class scala.collection.AbstractIterator does not have a correspondent in 2.13.0-M4 version | |
method newCanBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.SortedSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.SortedSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.SeqView does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.Seq does not have a correspondent in 2.13.0-M4 version | |
method ReusableCBF()scala.collection.generic.GenTraversableFactory#GenericCanBuildFrom in object scala.collection.IndexedSeq does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.IndexedSeq does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.Map does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in interface scala.collection.Iterator does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in interface scala.collection.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.Set does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.Iterable in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method canEqual(java.lang.Object)Boolean in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.Iterable in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method zipAll(scala.collection.GenIterable,java.lang.Object,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.AbstractIterable does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method diff(scala.collection.GenSet)scala.collection.Set in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Subtractable in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method +(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.Set in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSet does not have a correspondent in 2.13.0-M4 version | |
method coll()scala.collection.SeqLike in class scala.collection.Searching#SearchImpl does not have a correspondent in 2.13.0-M4 version | |
method search(java.lang.Object,scala.math.Ordering)scala.collection.Searching#SearchResult in class scala.collection.Searching#SearchImpl does not have a correspondent in 2.13.0-M4 version | |
method search(java.lang.Object,Int,Int,scala.math.Ordering)scala.collection.Searching#SearchResult in class scala.collection.Searching#SearchImpl does not have a correspondent in 2.13.0-M4 version | |
method bitsetCanBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.BitSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.BitSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.Iterable does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.LinearSeq does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.Iterable does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in class scala.collection.Iterator#ConcatIterator does not have a correspondent in 2.13.0-M4 version | |
method updated(Int,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.Seq in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method indexOf(java.lang.Object)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method :+(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method lastIndexWhere(scala.Function1)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method lastIndexOf(java.lang.Object)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method +:(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.Seq in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method reverseMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method lastIndexOfSlice(scala.collection.GenSeq)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method patch(Int,scala.collection.GenSeq,Int,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method union(scala.collection.GenSeq,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method indexOfSlice(scala.collection.GenSeq)Int in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method startsWith(scala.collection.GenSeq)Boolean in class scala.collection.AbstractSeq does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.Set does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.IndexedSeq does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.Seq does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Set#Set3 does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Set#Set3 does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.LongMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method compare(java.lang.Object,java.lang.Object)Int in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method keysIteratorFrom(Int)scala.collection.AbstractIterator in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method hasAll(scala.collection.Iterator)Boolean in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method keySet()scala.collection.SortedSet in class scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.IndexedSeq does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Set#Set4 does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Set#Set4 does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.immutable.LinearSeq does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.immutable.ParHashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method elemHashCode(java.lang.Object)Int in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method computeHash(java.lang.Object)Int in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method +(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.immutable.HashSet in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method iterator()scala.collection.Iterator in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method improve(Int)Int in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method writeReplace()java.lang.Object in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method implicitBuilder(scala.math.Ordering)scala.collection.mutable.Builder in object scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.immutable.IndexedSeq does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in interface scala.collection.immutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.immutable.SortedMap in interface scala.collection.immutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.IntMap does not have a correspondent in 2.13.0-M4 version | |
method updated(java.lang.Object,java.lang.Object)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method transform(scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.immutable.Map in class scala.collection.immutable.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.AbstractMap does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method genericBuilder()scala.collection.mutable.Builder in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method scanLeft(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method transform(scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.Iterable in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.Parallel in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method compare(java.lang.Object,java.lang.Object)Int in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Subtractable in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.Iterable in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method hasAll(scala.collection.Iterator)Boolean in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownBound(Int,Int)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method zipAll(scala.collection.GenIterable,java.lang.Object,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.immutable.TreeMap in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method scan(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method repr()java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.Traversable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownDelta(Int,Int,Int)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in interface scala.collection.immutable.Set does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.immutable.Set does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method bitsetCanBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method transform(scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Map#WithDefault does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Map#WithDefault does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.immutable.Map in class scala.collection.immutable.Map#WithDefault does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Map#WithDefault does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.immutable.ParHashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method elemHashCode(java.lang.Object)Int in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method computeHash(java.lang.Object)Int in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.immutable.HashMap in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method iterator()scala.collection.Iterator in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method improve(Int)Int in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method writeReplace()java.lang.Object in class scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.IndexedSeq in class scala.collection.immutable.NumericRange does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.NumericRange does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.NumericRange does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.IndexedSeq in class scala.collection.immutable.NumericRange does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.NumericRange does not have a correspondent in 2.13.0-M4 version | |
method newCanBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.immutable.SortedSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.immutable.SortedSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method emptyInstance()scala.collection.immutable.HashSet in object scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.HashSet does not have a correspondent in 2.13.0-M4 version | |
method flatMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method toCollection(scala.collection.LinearSeqLike)scala.collection.LinearSeq in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method collect(scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method +:(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.LinearSeq in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method productIterator()scala.collection.Iterator in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method productPrefix()java.lang.String in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.List does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method genericBuilder()scala.collection.mutable.Builder in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method scanLeft(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.Iterable in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method insert(java.lang.Object)scala.collection.immutable.TreeSet in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.Parallel in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method compare(java.lang.Object,java.lang.Object)Int in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method keysIteratorFrom(java.lang.Object)scala.collection.Iterator in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.generic.Subtractable in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.Iterable in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method hasAll(scala.collection.Iterator)Boolean in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownBound(Int,Int)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method zipAll(scala.collection.GenIterable,java.lang.Object,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method +(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.Set in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method scan(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method repr()java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.Traversable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownDelta(Int,Int,Int)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method keySet()scala.collection.SortedSet in class scala.collection.immutable.TreeSet does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in class scala.collection.immutable.RedBlackTree#TreeIterator does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.LinearSeq does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in interface scala.collection.immutable.Seq does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.immutable.Seq does not have a correspondent in 2.13.0-M4 version | |
method toCollection(scala.collection.LinearSeqLike)scala.collection.LinearSeq in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method :+(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method +:(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.LinearSeq in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Queue does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in interface scala.collection.immutable.Iterable does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in interface scala.collection.immutable.Iterable does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toDouble()Double in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method formatLocal(java.util.Locale,scala.collection.Seq)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method replaceAllLiterally(java.lang.String,java.lang.String)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method stripLineEnd()java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toCollection(scala.collection.immutable.WrappedString)scala.collection.immutable.WrappedString in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method stripMargin(Char)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method stripMargin()java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method compare(java.lang.String)Int in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toFloat()Float in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toInt()Int in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method lines()scala.collection.Iterator in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toBoolean()Boolean in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.immutable.WrappedString in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
deprecated method linesIterator()scala.collection.Iterator in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method split(Char)Array[java.lang.String] in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method split(Array[Char])Array[java.lang.String] in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method *(Int)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method compareTo(java.lang.Object)Int in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method >(java.lang.Object)Boolean in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toShort()Short in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toLong()Long in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method stripSuffix(java.lang.String)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method >=(java.lang.Object)Boolean in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method r()scala.util.matching.Regex in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method r(scala.collection.Seq)scala.util.matching.Regex in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method <(java.lang.Object)Boolean in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toByte()Byte in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method linesWithSeparators()scala.collection.Iterator in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method stripPrefix(java.lang.String)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method capitalize()java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method <=(java.lang.Object)Boolean in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method format(scala.collection.Seq)java.lang.String in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.WrappedString does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.IndexedSeq in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.immutable.ParRange in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.IndexedSeq in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method copy(Int,Int,Int)scala.collection.immutable.Range in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Range does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Set#Set2 does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Set#Set2 does not have a correspondent in 2.13.0-M4 version | |
method collectedTail(java.lang.Object,scala.collection.immutable.Stream,scala.PartialFunction,scala.collection.generic.CanBuildFrom)scala.collection.immutable.Stream#Cons in object scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method consWrapper(scala.Function0)scala.collection.immutable.Stream#ConsWrapper in object scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom(scala.math.Ordering)scala.collection.generic.CanBuildFrom in object scala.collection.immutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.ListSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.ListMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.ListSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.ListSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Map does not have a correspondent in 2.13.0-M4 version | |
method tl()scala.collection.immutable.List in class scala.collection.immutable.:: does not have a correspondent in 2.13.0-M4 version | |
method tl_=(scala.collection.immutable.List)Unit in class scala.collection.immutable.:: does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Seq does not have a correspondent in 2.13.0-M4 version | |
method copy(Int,Int,Int)scala.collection.immutable.Range in class scala.collection.immutable.Range#Inclusive does not have a correspondent in 2.13.0-M4 version | |
method updated(Int,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method appendBack(java.lang.Object)scala.collection.immutable.Vector in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.IndexedSeq in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.immutable.ParVector in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method :+(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method appendFront(java.lang.Object)scala.collection.immutable.Vector in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method +:(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.IndexedSeq in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Vector does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Set#Set1 does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Set#Set1 does not have a correspondent in 2.13.0-M4 version | |
method hasMatch(Int,Int,Int)Boolean in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method complement(Int)Int in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method unsignedCompare(Int,Int)Boolean in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
synthetic method bitString$default$2()java.lang.String in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method highestOneBit(Int)Int in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method bits(Int)scala.collection.immutable.IndexedSeq in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method mask(Int,Int)Int in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method bitString(Int,java.lang.String)java.lang.String in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method shorter(Int,Int)Boolean in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method zero(Int,Int)Boolean in object scala.collection.immutable.HashMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Set does not have a correspondent in 2.13.0-M4 version | |
method flatMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method scanLeft(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method toCollection(scala.collection.LinearSeqLike)scala.collection.LinearSeq in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method collect(scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method +:(java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.LinearSeq in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method force()scala.collection.immutable.Stream in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method print()Unit in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method print(java.lang.String)Unit in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.immutable.Stream does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in object scala.collection.immutable.Set#EmptySet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in object scala.collection.immutable.Set#EmptySet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.immutable.Iterable does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.ArrayBuffer in class scala.collection.convert.Wrappers#JIterableWrapper does not have a correspondent in 2.13.0-M4 version | |
method result()scala.collection.convert.Wrappers#JListWrapper in class scala.collection.convert.Wrappers#JListWrapper does not have a correspondent in 2.13.0-M4 version | |
method productElement(Int)java.lang.Object in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
method productArity()Int in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
method copy(java.util.Map)scala.collection.convert.Wrappers#JMapWrapper in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
synthetic method copy$default$1()java.util.Map in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
method productIterator()scala.collection.Iterator in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
method productPrefix()java.lang.String in class scala.collection.convert.Wrappers#JMapWrapper does not have a correspondent in 2.13.0-M4 version | |
abstract method JMapWrapper()scala.collection.convert.Wrappers#JMapWrapper# in interface scala.collection.convert.Wrappers does not have a correspondent in 2.13.0-M4 version | |
method JMapWrapper()scala.collection.convert.Wrappers#JMapWrapper# in object scala.collection.convert.Wrappers does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.ArrayBuffer in class scala.collection.convert.Wrappers#JCollectionWrapper does not have a correspondent in 2.13.0-M4 version | |
method seqLikeRepr(scala.Function1)scala.collection.generic.IsSeqLike in object scala.collection.generic.IsSeqLike does not have a correspondent in 2.13.0-M4 version | |
method dual(scala.collection.concurrent.SNode,Int,scala.collection.concurrent.SNode,Int,Int,scala.collection.concurrent.Gen)scala.collection.concurrent.MainNode in object scala.collection.concurrent.CNode does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
deprecated method printDebug()Unit in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method corresponds(scala.collection.GenTraversableOnce,scala.Function2)Boolean in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method hasDefiniteSize()Boolean in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method padTo(Int,java.lang.Object)scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method partition(scala.Function1)scala.Tuple2 in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method toIterable()scala.collection.Iterable in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2)scala.collection.Iterator in class scala.collection.concurrent.TrieMapIterator does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method this(scala.collection.concurrent.Gen)Unit in class scala.collection.concurrent.INode does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
deprecated method root()java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method flatMap(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method updated(java.lang.Object,java.lang.Object)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method result()scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method genericBuilder()scala.collection.mutable.Builder in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method aggregate(scala.Function0,scala.Function2,scala.Function2)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method scanLeft(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method --(scala.collection.GenTraversableOnce)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.Iterable in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method collect(scala.PartialFunction,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.mutable.ParTrieMap in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHint(Int)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHint(scala.collection.TraversableLike)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method ++(scala.collection.GenTraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method -(java.lang.Object,java.lang.Object,scala.collection.Seq)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.Iterable in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
deprecated method root_=(java.lang.Object)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sameElements(scala.collection.GenIterable)Boolean in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method filterImpl(scala.Function1,Boolean)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownBound(Int,Int)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method zipAll(scala.collection.GenIterable,java.lang.Object,java.lang.Object,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
deprecated method CAS_ROOT(java.lang.Object,java.lang.Object)Boolean in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.mutable.Map in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method repr()java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method scan(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method mapResult(scala.Function1)scala.collection.mutable.Builder in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method toTraversable()scala.collection.Traversable in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method isTraversableAgain()Boolean in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.TraversableOnce,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method ++:(scala.collection.Traversable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method sliceWithKnownDelta(Int,Int,Int)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method map(scala.Function1,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method scanRight(java.lang.Object,scala.Function2,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.concurrent.TrieMap does not have a correspondent in 2.13.0-M4 version | |
method newRootNode()scala.collection.concurrent.INode in object scala.collection.concurrent.INode does not have a correspondent in 2.13.0-M4 version | |
method listmap()scala.collection.immutable.ListMap in class scala.collection.concurrent.LNode does not have a correspondent in 2.13.0-M4 version | |
method this(scala.collection.immutable.ListMap)Unit in class scala.collection.concurrent.LNode does not have a correspondent in 2.13.0-M4 version | |
method this(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object)Unit in class scala.collection.concurrent.LNode does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.mutable.Seq does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in interface scala.collection.mutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method updated(java.lang.Object,java.lang.Object)scala.collection.mutable.SortedMap in interface scala.collection.mutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method +(scala.Tuple2,scala.Tuple2,scala.collection.Seq)scala.collection.mutable.SortedMap in interface scala.collection.mutable.SortedMap does not have a correspondent in 2.13.0-M4 version | |
method result()scala.collection.mutable.ArrayBuffer in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method swap(Int,Int)Unit in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method toCollection(java.lang.Object)scala.collection.mutable.IndexedSeq in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method par()scala.collection.parallel.mutable.ParArray in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method sizeHint(scala.collection.TraversableLike,Int)Unit in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method sizeHintBounded(Int,scala.collection.TraversableLike)Unit in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method sizeHintIfCheap()Int in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method initialSize()Int in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method thisCollection()scala.collection.mutable.IndexedSeq in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method zipWithIndex(scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method copy(Int,Int,Int)Unit in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method ++=:(scala.collection.TraversableOnce)scala.collection.mutable.ArrayBuffer in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method zip(scala.collection.GenIterable,scala.collection.generic.CanBuildFrom)java.lang.Object in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method mapResult(scala.Function1)scala.collection.mutable.Builder in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method reduceToSize(Int)Unit in class scala.collection.mutable.ArrayBuffer does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.mutable.AnyRefMap does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.mutable.WeakHashMap does not have a correspondent in 2.13.0-M4 version | |
method underlying()scala.collection.immutable.List in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method indexOf(java.lang.Object)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method lastIndexWhere(scala.Function1)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method lastIndexOf(java.lang.Object)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method ++=:(scala.collection.TraversableOnce)scala.collection.mutable.ListBuffer in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method copyToArray(java.lang.Object)Unit in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method indexWhere(scala.Function1)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method lastIndexOfSlice(scala.collection.GenSeq)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method indexOfSlice(scala.collection.GenSeq)Int in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method startsWith(scala.collection.GenSeq)Boolean in class scala.collection.mutable.ListBuffer does not have a correspondent in 2.13.0-M4 version | |
method newBuilder()scala.collection.mutable.Builder in class scala.collection.mutable.TreeMap does not have a correspondent in 2.13.0-M4 version | |
method calcSizeMapSize(Int)Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizemap()Array[Int] in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method threshold()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method createNewEntry(java.lang.Object,java.lang.Object)scala.collection.mutable.LinkedHashSet#Entry in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method clearTable()Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method init(java.io.ObjectInputStream,scala.Function0)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method elemEquals(java.lang.Object,java.lang.Object)Boolean in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method tableSizeSeed()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method tableSize()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method table_=(Array[scala.collection.mutable.HashEntry])Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method totalSizeMapBuckets()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizemap_=(Array[Int])Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method isSizeMapDefined()Boolean in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizeMapBucketSize()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizeMapBucketBitSize()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method threshold_=(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizeMapInit(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method addEntry(scala.collection.mutable.HashEntry)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method foreachEntry(scala.Function1)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method initialSize()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizeMapInitAndRebuild()Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method seedvalue()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method removeEntry(java.lang.Object)scala.collection.mutable.HashEntry in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method elemHashCode(java.lang.Object)Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method nnSizeMapRemove(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method findOrAddEntry(java.lang.Object,java.lang.Object)scala.collection.mutable.HashEntry in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method printSizeMap()Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method hashTableContents()scala.collection.mutable.HashTable#Contents in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method initWithContents(scala.collection.mutable.HashTable#Contents)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method nnSizeMapReset(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method index(Int)Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method tableSize_=(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method findEntry(java.lang.Object)scala.collection.mutable.HashEntry in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method sizeMapDisable()Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method _loadFactor()Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method serializeTo(java.io.ObjectOutputStream,scala.Function1)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method improve(Int,Int)Int in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method _loadFactor_=(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method seedvalue_=(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method alwaysInitSizeMap()Boolean in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method table()Array[scala.collection.mutable.HashEntry] in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method entriesIterator()scala.collection.Iterator in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method nnSizeMapAdd(Int)Unit in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method companion()scala.collection.generic.GenericCompanion in class scala.collection.mutable.LinkedHashSet does not have a correspondent in 2.13.0-M4 version | |
method bitsetCanBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.mutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method canBuildFrom()scala.collection.generic.CanBuildFrom in object scala.collection.mutable.BitSet does not have a correspondent in 2.13.0-M4 version | |
method parCombiner()scala.collection.parallel.Combiner in class scala.collection.mutable.AbstractSeq does not have a correspondent in 2.13.0-M |