abstract class IntIterator extends Iterator[Int]
An iterator over Int (required to prevent boxing the result of next).
- Source
- AliasingFrame.scala
- Alphabetic
- By Inheritance
- IntIterator
- Iterator
- TraversableOnce
- GenTraversableOnce
- AnyRef
- Any
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
- Hide All
- Show All
- Public
- All
Instance Constructors
- new IntIterator()
Type Members
-
class
GroupedIterator[B >: A] extends AbstractIterator[collection.Seq[B]] with collection.Iterator[collection.Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
-
abstract
def
hasNext: Boolean
- Definition Classes
- IntIterator → Iterator
-
abstract
def
next(): Int
- Definition Classes
- IntIterator → Iterator
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
Test two objects for inequality.
Test two objects for inequality.
- returns
true
if !(this == that), false otherwise.
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
Equivalent to
x.hashCode
except for boxed numeric types andnull
.Equivalent to
x.hashCode
except for boxed numeric types andnull
. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. Fornull
returns a hashcode wherenull.hashCode
throws aNullPointerException
.- returns
a hash value consistent with ==
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator to any2stringadd[IntIterator] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
++[B >: Int](that: ⇒ GenTraversableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
->[B](y: B): (IntIterator, B)
- Implicit
- This member is added by an implicit conversion from IntIterator to ArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
def
/:[B](z: B)(op: (B, Int) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
:\[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
==(arg0: Any): Boolean
The expression
x == that
is equivalent toif (x eq null) that eq null else x.equals(that)
.The expression
x == that
is equivalent toif (x eq null) that eq null else x.equals(that)
.- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Definition Classes
- AnyRef → Any
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
Cast the receiver object to be of type
T0
.Cast the receiver object to be of type
T0
.Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression
1.asInstanceOf[String]
will throw aClassCastException
at runtime, while the expressionList(1).asInstanceOf[List[String]]
will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.- returns
the receiver object.
- Definition Classes
- Any
- Exceptions thrown
ClassCastException
if the receiver object is not an instance of the erasure of typeT0
.
-
def
buffered: collection.BufferedIterator[Int]
- Definition Classes
- Iterator
-
def
clone(): AnyRef
Create a copy of the receiver object.
Create a copy of the receiver object.
The default implementation of the
clone
method is platform dependent.- returns
a copy of the receiver object.
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- Note
not specified by SLS as a member of AnyRef
-
def
collect[B](pf: PartialFunction[Int, B]): collection.Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
collect
has changed. The previous behavior can be reproduced withtoSeq
.
-
def
collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
contains(elem: Any): Boolean
- Definition Classes
- Iterator
-
def
copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Int](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Int](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: Int](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
corresponds[B](that: GenTraversableOnce[B])(p: (Int, B) ⇒ Boolean): Boolean
- Definition Classes
- Iterator
-
def
count(p: (Int) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
drop(n: Int): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
dropWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
duplicate: (collection.Iterator[Int], collection.Iterator[Int])
- Definition Classes
- Iterator
-
def
ensuring(cond: (IntIterator) ⇒ Boolean, msg: ⇒ Any): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (IntIterator) ⇒ Boolean): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): IntIterator
- Implicit
- This member is added by an implicit conversion from IntIterator to Ensuring[IntIterator] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
Tests whether the argument (
that
) is a reference to the receiver object (this
).Tests whether the argument (
that
) is a reference to the receiver object (this
).The
eq
method implements an equivalence relation on non-null instances ofAnyRef
, and has three additional properties:- It is consistent: for any non-null instances
x
andy
of typeAnyRef
, multiple invocations ofx.eq(y)
consistently returnstrue
or consistently returnsfalse
. - For any non-null instance
x
of typeAnyRef
,x.eq(null)
andnull.eq(x)
returnsfalse
. null.eq(null)
returnstrue
.
When overriding the
equals
orhashCode
methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2
), they should be equal to each other (o1 == o2
) and they should hash to the same value (o1.hashCode == o2.hashCode
).- returns
true
if the argument is a reference to the receiver object;false
otherwise.
- Definition Classes
- AnyRef
- It is consistent: for any non-null instances
-
def
equals(arg0: Any): Boolean
The equality method for reference types.
-
def
exists(p: (Int) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
filter(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
filterNot(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
finalize(): Unit
Called by the garbage collector on the receiver object when there are no more references to the object.
Called by the garbage collector on the receiver object when there are no more references to the object.
The details of when and if the
finalize
method is invoked, as well as the interaction betweenfinalize
and non-local returns and exceptions, are all platform dependent.- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- Note
not specified by SLS as a member of AnyRef
-
def
find(p: (Int) ⇒ Boolean): Option[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, Int) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
forall(p: (Int) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: (Int) ⇒ U): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from IntIterator to StringFormat[IntIterator] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
Returns the runtime class representation of the object.
Returns the runtime class representation of the object.
- returns
a class object corresponding to the runtime type of the receiver.
- Definition Classes
- AnyRef → Any
-
def
grouped[B >: Int](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
hasDefiniteSize: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
hashCode(): Int
The hashCode method for reference types.
-
def
indexOf[B >: Int](elem: B, from: Int): Int
- Definition Classes
- Iterator
-
def
indexOf[B >: Int](elem: B): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Int) ⇒ Boolean, from: Int): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Int) ⇒ Boolean): Int
- Definition Classes
- Iterator
-
def
isEmpty: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
Test whether the dynamic type of the receiver object is
T0
.Test whether the dynamic type of the receiver object is
T0
.Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression
1.isInstanceOf[String]
will returnfalse
, while the expressionList(1).isInstanceOf[List[String]]
will returntrue
. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.- returns
true
if the receiver object is an instance of erasure of typeT0
;false
otherwise.
- Definition Classes
- Any
-
def
isTraversableAgain: Boolean
- Definition Classes
- Iterator → GenTraversableOnce
-
def
length: Int
- Definition Classes
- Iterator
-
def
map[B](f: (Int) ⇒ B): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
max[B >: Int](implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: Int](implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
Equivalent to
!(this eq that)
.Equivalent to
!(this eq that)
.- returns
true
if the argument is not a reference to the receiver object;false
otherwise.
- Definition Classes
- AnyRef
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
Wakes up a single thread that is waiting on the receiver object's monitor.
Wakes up a single thread that is waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Note
not specified by SLS as a member of AnyRef
-
final
def
notifyAll(): Unit
Wakes up all threads that are waiting on the receiver object's monitor.
Wakes up all threads that are waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Note
not specified by SLS as a member of AnyRef
-
def
padTo[A1 >: Int](len: Int, elem: A1): collection.Iterator[A1]
- Definition Classes
- Iterator
-
def
partition(p: (Int) ⇒ Boolean): (collection.Iterator[Int], collection.Iterator[Int])
- Definition Classes
- Iterator
-
def
patch[B >: Int](from: Int, patchElems: collection.Iterator[B], replaced: Int): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
product[B >: Int](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: Int](op: (B, Int) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: Int](op: (Int, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reversed: List[Int]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements(that: collection.Iterator[_]): Boolean
- Definition Classes
- Iterator
-
def
scanLeft[B](z: B)(op: (B, Int) ⇒ B): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
scanRight[B](z: B)(op: (Int, B) ⇒ B): collection.Iterator[B]
- Definition Classes
- Iterator
-
def
seq: collection.Iterator[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
slice(from: Int, until: Int): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
sliceIterator(from: Int, until: Int): collection.Iterator[Int]
- Attributes
- protected
- Definition Classes
- Iterator
-
def
sliding[B >: Int](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
span(p: (Int) ⇒ Boolean): (collection.Iterator[Int], collection.Iterator[Int])
- Definition Classes
- Iterator
-
def
sum[B >: Int](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
take(n: Int): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
takeWhile(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: Int]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIndexedSeq: collection.immutable.IndexedSeq[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: collection.Iterable[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterator: collection.Iterator[Int]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toList: List[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: collection.Seq[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSet[B >: Int]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: collection.immutable.Stream[Int]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toString(): String
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
- returns
a String representation of the object.
- Definition Classes
- Iterator → AnyRef → Any
-
def
toTraversable: collection.Traversable[Int]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
toVector: Vector[Int]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withFilter(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Definition Classes
- Iterator
-
def
zip[B](that: collection.Iterator[B]): collection.Iterator[(Int, B)]
- Definition Classes
- Iterator
-
def
zipAll[B, A1 >: Int, B1 >: B](that: collection.Iterator[B], thisElem: A1, thatElem: B1): collection.Iterator[(A1, B1)]
- Definition Classes
- Iterator
-
def
zipWithIndex: collection.Iterator[(Int, Int)]
- Definition Classes
- Iterator
-
def
→[B](y: B): (IntIterator, B)
- Implicit
- This member is added by an implicit conversion from IntIterator to ArrowAssoc[IntIterator] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Shadowed Implicit Value Members
-
def
filter(p: (Int) ⇒ Boolean): collection.TraversableOnce[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: MonadOps[Int]).filter(p)
- Definition Classes
- MonadOps
-
def
flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): collection.TraversableOnce[B]
- Implicit
- This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: MonadOps[Int]).flatMap(f)
- Definition Classes
- MonadOps
-
def
map[B](f: (Int) ⇒ B): collection.TraversableOnce[B]
- Implicit
- This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: MonadOps[Int]).map(f)
- Definition Classes
- MonadOps
-
def
withFilter(p: (Int) ⇒ Boolean): collection.Iterator[Int]
- Implicit
- This member is added by an implicit conversion from IntIterator to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(intIterator: MonadOps[Int]).withFilter(p)
- Definition Classes
- MonadOps
The Scala compiler API.
The following resources are useful for Scala plugin/compiler development: