File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compat/src/main/scala-2.11_2.12/scala/collection/compat/immutable Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ package scala.collection.compat.immutable
15
15
import java .util .Arrays
16
16
17
17
import scala .annotation .unchecked .uncheckedVariance
18
- import scala .collection .AbstractSeq
18
+ import scala .collection .{ AbstractSeq , IndexedSeqOptimized }
19
19
import scala .collection .generic ._
20
20
import scala .collection .immutable .IndexedSeq
21
21
import scala .collection .mutable .{ArrayBuilder , Builder , WrappedArrayBuilder }
@@ -34,7 +34,7 @@ import scala.util.hashing.MurmurHash3
34
34
* @define mayNotTerminateInf
35
35
* @define willNotTerminateInf
36
36
*/
37
- abstract class ArraySeq [+ T ] extends AbstractSeq [T ] with IndexedSeq [T ] {
37
+ abstract class ArraySeq [+ T ] extends AbstractSeq [T ] with IndexedSeq [T ] with IndexedSeqOptimized [ T , ArraySeq [ T ]] {
38
38
39
39
override protected [this ] def thisCollection : ArraySeq [T ] = this
40
40
You can’t perform that action at this time.
0 commit comments