|
1 |
| -reload: CrashOnLoad.scala |
| 1 | +reload: CrashOnLoad.scala, TestIterable.java |
2 | 2 |
|
3 |
| -askTypeCompletion at CrashOnLoad.scala(6,12) |
| 3 | +askTypeCompletion at CrashOnLoad.scala(6,11) |
4 | 4 | ================================================================================
|
5 |
| -[response] askTypeCompletion at (6,12) |
6 |
| -retrieved 117 members |
| 5 | +[response] askTypeCompletion at (6,11) |
| 6 | +retrieved 30 members |
7 | 7 | [inaccessible] protected[package lang] def clone(): Object
|
8 | 8 | [inaccessible] protected[package lang] def finalize(): Unit
|
9 |
| -[inaccessible] protected[this] def reversed: List[B] |
10 |
| -class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]] |
11 | 9 | def +(other: String): String
|
12 |
| -def ++[B >: B](that: => scala.collection.GenTraversableOnce[B]): Iterator[B] |
13 |
| -def ->[B](y: B): (java.util.Iterator[B], B) |
14 |
| -def /:[B](z: B)(op: (B, B) => B): B |
15 |
| -def :\[B](z: B)(op: (B, B) => B): B |
16 |
| -def addString(b: StringBuilder): StringBuilder |
17 |
| -def addString(b: StringBuilder,sep: String): StringBuilder |
18 |
| -def addString(b: StringBuilder,start: String,sep: String,end: String): StringBuilder |
19 |
| -def aggregate[B](z: => B)(seqop: (B, B) => B,combop: (B, B) => B): B |
20 |
| -def buffered: scala.collection.BufferedIterator[B] |
21 |
| -def collectFirst[B](pf: PartialFunction[B,B]): Option[B] |
22 |
| -def collect[B](pf: PartialFunction[B,B]): Iterator[B] |
23 |
| -def contains(elem: Any): Boolean |
24 |
| -def copyToArray[B >: B](xs: Array[B]): Unit |
25 |
| -def copyToArray[B >: B](xs: Array[B],start: Int): Unit |
26 |
| -def copyToArray[B >: B](xs: Array[B],start: Int,len: Int): Unit |
27 |
| -def copyToBuffer[B >: B](dest: scala.collection.mutable.Buffer[B]): Unit |
28 |
| -def corresponds[B](that: scala.collection.GenTraversableOnce[B])(p: (B, B) => Boolean): Boolean |
29 |
| -def count(p: B => Boolean): Int |
30 |
| -def drop(n: Int): Iterator[B] |
31 |
| -def dropWhile(p: B => Boolean): Iterator[B] |
32 |
| -def duplicate: (Iterator[B], Iterator[B]) |
33 |
| -def ensuring(cond: Boolean): java.util.Iterator[B] |
34 |
| -def ensuring(cond: Boolean,msg: => Any): java.util.Iterator[B] |
35 |
| -def ensuring(cond: java.util.Iterator[B] => Boolean): java.util.Iterator[B] |
36 |
| -def ensuring(cond: java.util.Iterator[B] => Boolean,msg: => Any): java.util.Iterator[B] |
| 10 | +def ->[B](y: B): (other.TestIterator[Nothing], B) |
| 11 | +def ensuring(cond: Boolean): other.TestIterator[Nothing] |
| 12 | +def ensuring(cond: Boolean,msg: => Any): other.TestIterator[Nothing] |
| 13 | +def ensuring(cond: other.TestIterator[Nothing] => Boolean): other.TestIterator[Nothing] |
| 14 | +def ensuring(cond: other.TestIterator[Nothing] => Boolean,msg: => Any): other.TestIterator[Nothing] |
37 | 15 | def equals(x$1: Any): Boolean
|
38 |
| -def exists(p: B => Boolean): Boolean |
39 |
| -def filter(p: B => Boolean): Iterator[B] |
40 |
| -def filterNot(p: B => Boolean): Iterator[B] |
41 |
| -def find(p: B => Boolean): Option[B] |
42 |
| -def flatMap[B](f: B => scala.collection.GenTraversableOnce[B]): Iterator[B] |
43 |
| -def foldLeft[B](z: B)(op: (B, B) => B): B |
44 |
| -def foldRight[B](z: B)(op: (B, B) => B): B |
45 |
| -def fold[A1 >: B](z: A1)(op: (A1, A1) => A1): A1 |
46 |
| -def forall(p: B => Boolean): Boolean |
47 |
| -def foreach[U](f: B => U): Unit |
48 | 16 | def formatted(fmtstr: String): String
|
49 |
| -def grouped[B >: B](size: Int): Iterator[B]#GroupedIterator[B] |
50 |
| -def hasDefiniteSize: Boolean |
51 |
| -def hasNext(): Boolean |
| 17 | +def hasNext: Boolean |
52 | 18 | def hashCode(): Int
|
53 |
| -def indexOf[B >: B](elem: B): Int |
54 |
| -def indexWhere(p: B => Boolean): Int |
55 |
| -def isEmpty: Boolean |
56 |
| -def isTraversableAgain: Boolean |
57 |
| -def length: Int |
58 |
| -def map[B](f: B => B): Iterator[B] |
59 |
| -def maxBy[B](f: B => B)(implicit cmp: Ordering[B]): B |
60 |
| -def max[B >: B](implicit cmp: Ordering[B]): B |
61 |
| -def minBy[B](f: B => B)(implicit cmp: Ordering[B]): B |
62 |
| -def min[B >: B](implicit cmp: Ordering[B]): B |
63 |
| -def mkString(sep: String): String |
64 |
| -def mkString(start: String,sep: String,end: String): String |
65 |
| -def mkString: String |
66 |
| -def next(): B |
67 |
| -def nonEmpty: Boolean |
68 |
| -def padTo[A1 >: B](len: Int,elem: A1): Iterator[A1] |
69 |
| -def partition(p: B => Boolean): (Iterator[B], Iterator[B]) |
70 |
| -def patch[B >: B](from: Int,patchElems: Iterator[B],replaced: Int): Iterator[B] |
71 |
| -def product[B >: B](implicit num: Numeric[B]): B |
72 |
| -def reduceLeftOption[B >: B](op: (B, B) => B): Option[B] |
73 |
| -def reduceLeft[B >: B](op: (B, B) => B): B |
74 |
| -def reduceOption[A1 >: B](op: (A1, A1) => A1): Option[A1] |
75 |
| -def reduceRightOption[B >: B](op: (B, B) => B): Option[B] |
76 |
| -def reduceRight[B >: B](op: (B, B) => B): B |
77 |
| -def reduce[A1 >: B](op: (A1, A1) => A1): A1 |
78 |
| -def remove(): Unit |
79 |
| -def sameElements(that: Iterator[_]): Boolean |
80 |
| -def scanLeft[B](z: B)(op: (B, B) => B): Iterator[B] |
81 |
| -def scanRight[B](z: B)(op: (B, B) => B): Iterator[B] |
82 |
| -def seq: Iterator[B] |
83 |
| -def size: Int |
84 |
| -def slice(from: Int,until: Int): Iterator[B] |
85 |
| -def sliding[B >: B](size: Int,step: Int): Iterator[B]#GroupedIterator[B] |
86 |
| -def span(p: B => Boolean): (Iterator[B], Iterator[B]) |
87 |
| -def sum[B >: B](implicit num: Numeric[B]): B |
88 |
| -def take(n: Int): Iterator[B] |
89 |
| -def takeWhile(p: B => Boolean): Iterator[B] |
90 |
| -def toArray[B >: B](implicit evidence$1: scala.reflect.ClassTag[B]): Array[B] |
91 |
| -def toBuffer[B >: B]: scala.collection.mutable.Buffer[B] |
92 |
| -def toIndexedSeq: scala.collection.immutable.IndexedSeq[B] |
93 |
| -def toIterable: Iterable[B] |
94 |
| -def toIterator: Iterator[B] |
95 |
| -def toList: List[B] |
96 |
| -def toMap[T, U](implicit ev: <:<[B,(T, U)]): scala.collection.immutable.Map[T,U] |
97 |
| -def toSeq: Seq[B] |
98 |
| -def toSet[B >: B]: scala.collection.immutable.Set[B] |
99 |
| -def toStream: scala.collection.immutable.Stream[B] |
| 19 | +def next: T |
100 | 20 | def toString(): String
|
101 |
| -def toTraversable: Traversable[B] |
102 |
| -def toVector: Vector[B] |
103 |
| -def to[Col[_]](implicit cbf: scala.collection.generic.CanBuildFrom[Nothing,B,Col[B]]): Col[B] |
104 |
| -def withFilter(p: B => Boolean): Iterator[B] |
105 |
| -def zipAll[B, A1 >: B, B1 >: B](that: Iterator[B],thisElem: A1,thatElem: B1): Iterator[(A1, B1)] |
106 |
| -def zipWithIndex: Iterator[(B, Int)] |
107 |
| -def zip[B](that: Iterator[B]): Iterator[(B, B)] |
108 |
| -def →[B](y: B): (java.util.Iterator[B], B) |
| 21 | +def →[B](y: B): (other.TestIterator[Nothing], B) |
109 | 22 | final def !=(x$1: Any): Boolean
|
110 | 23 | final def ##(): Int
|
111 | 24 | final def ==(x$1: Any): Boolean
|
|
0 commit comments