Instance Constructors
-
new
Proxy
(wrapped: C, otherComposingIterators: scalax.io.CloseableIterator[_]*)
Type Members
-
class
Proxy
[+B, C <: Iterator[B]]
extends CloseableIterator[B]
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
++
[B >: B]
(that: ⇒ GenTraversableOnce[B]): CloseableIterator[B]
-
def
/:
[B]
(z: B)(op: (B, B) ⇒ B): B
-
def
/:\
[A1 >: B]
(z: A1)(op: (A1, A1) ⇒ A1): A1
-
def
:\
[B]
(z: B)(op: (B, B) ⇒ B): B
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
object
Proxy
extends AnyRef
-
def
addString
(b: StringBuilder): StringBuilder
-
def
addString
(b: StringBuilder, sep: String): StringBuilder
-
def
addString
(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
-
def
aggregate
[B]
(z: B)(seqop: (B, B) ⇒ B, combop: (B, B) ⇒ B): B
-
def
asInstanceOf
[T0]
: T0
-
def
buffered
: BufferedIterator[B]
-
def
clone
(): AnyRef
-
def
close
(): Unit
-
def
collect
[B]
(pf: PartialFunction[B, B]): Iterator[B]
-
def
collectFirst
[B]
(pf: PartialFunction[B, B]): Option[B]
-
def
contains
(elem: Any): Boolean
-
def
copyToArray
[B >: B]
(xs: Array[B], start: Int, len: Int): Unit
-
def
copyToArray
[B >: B]
(xs: Array[B]): Unit
-
def
copyToArray
[B >: B]
(xs: Array[B], start: Int): Unit
-
def
copyToBuffer
[B >: B]
(dest: Buffer[B]): Unit
-
def
count
(p: (B) ⇒ Boolean): Int
-
val
creationPoint
: Exception
-
def
doClose
(): Unit
-
def
drop
(n: Int): Iterator[B]
-
def
dropWhile
(p: (B) ⇒ Boolean): CloseableIterator[B]
-
def
duplicate
: (Iterator[B], Iterator[B])
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
exists
(p: (B) ⇒ Boolean): Boolean
-
-
def
filterNot
(p: (B) ⇒ Boolean): Iterator[B]
-
def
finalize
(): Unit
-
def
find
(p: (B) ⇒ Boolean): Option[B]
-
def
flatMap
[B]
(f: (B) ⇒ GenTraversableOnce[B]): CloseableIterator[B]
-
def
fold
[A1 >: B]
(z: A1)(op: (A1, A1) ⇒ A1): A1
-
def
foldLeft
[B]
(z: B)(op: (B, B) ⇒ B): B
-
def
foldRight
[B]
(z: B)(op: (B, B) ⇒ B): B
-
def
forall
(p: (B) ⇒ Boolean): Boolean
-
def
foreach
[U]
(f: (B) ⇒ U): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
grouped
[B >: B]
(size: Int): GroupedIterator[B]
-
def
hasDefiniteSize
: Boolean
-
def
hasNext
: Boolean
-
def
hashCode
(): Int
-
def
indexOf
[B >: B]
(elem: B): Int
-
def
indexWhere
(p: (B) ⇒ Boolean): Int
-
def
isEmpty
: Boolean
-
def
isInstanceOf
[T0]
: Boolean
-
def
isTraversableAgain
: Boolean
-
def
length
: Int
-
def
lslice
(from: Long, until: Long): CloseableIterator[B]
-
-
def
max
[B >: B]
(implicit cmp: Ordering[B]): B
-
def
maxBy
[B]
(f: (B) ⇒ B)(implicit cmp: Ordering[B]): B
-
def
min
[B >: B]
(implicit cmp: Ordering[B]): B
-
def
minBy
[B]
(f: (B) ⇒ B)(implicit cmp: Ordering[B]): B
-
def
mkString
: String
-
def
mkString
(sep: String): String
-
def
mkString
(start: String, sep: String, end: String): String
-
def
modifiedSliding
(size: Int, step: Int): CloseableIterator[Seq[B]]
-
def
ne
(arg0: AnyRef): Boolean
-
def
next
(): B
-
def
nonEmpty
: Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
padTo
[A1 >: B]
(len: Int, elem: A1): Iterator[A1]
-
def
partition
(p: (B) ⇒ Boolean): (Iterator[B], Iterator[B])
-
def
patch
[B >: B]
(from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
-
def
product
[B >: B]
(implicit num: Numeric[B]): B
-
def
reduce
[A1 >: B]
(op: (A1, A1) ⇒ A1): A1
-
def
reduceLeft
[B >: B]
(op: (B, B) ⇒ B): B
-
def
reduceLeftOption
[B >: B]
(op: (B, B) ⇒ B): Option[B]
-
def
reduceOption
[A1 >: B]
(op: (A1, A1) ⇒ A1): Option[A1]
-
def
reduceRight
[B >: B]
(op: (B, B) ⇒ B): B
-
def
reduceRightOption
[B >: B]
(op: (B, B) ⇒ B): Option[B]
-
def
reversed
: List[B]
-
def
sameElements
(that: Iterator[_]): Boolean
-
def
scanLeft
[B]
(z: B)(op: (B, B) ⇒ B): Iterator[B]
-
def
scanRight
[B]
(z: B)(op: (B, B) ⇒ B): Iterator[B]
-
def
seq
: Iterator[B]
-
def
size
: Int
-
def
slice
(from: Int, until: Int): Iterator[B]
-
def
sliding
[B >: B]
(size: Int, step: Int): GroupedIterator[B]
-
def
span
(p: (B) ⇒ Boolean): (Iterator[B], Iterator[B])
-
def
sum
[B >: B]
(implicit num: Numeric[B]): B
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
-
def
takeWhile
(p: (B) ⇒ Boolean): CloseableIterator[B]
-
def
toArray
[B >: B]
(implicit arg0: ClassManifest[B]): Array[B]
-
def
toBuffer
[B >: B]
: Buffer[B]
-
def
toIndexedSeq
[B >: B]
: IndexedSeq[B]
-
def
toIterable
: Iterable[B]
-
def
toIterator
: Iterator[B]
-
def
toList
: List[B]
-
def
toMap
[T, U]
(implicit ev: <:<[B, (T, U)]): Map[T, U]
-
def
toSeq
: Seq[B]
-
def
toSet
[B >: B]
: Set[B]
-
def
toStream
: Stream[B]
-
def
toString
(): String
-
def
toTraversable
: Traversable[B]
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
-
def
withFilter
(p: (B) ⇒ Boolean): Iterator[B]
-
val
wrapped
: C
-
def
zip
[B]
(that: Iterator[B]): CloseableIterator[(B, B)]
-
def
zipAll
[B, A1 >: B, B1 >: B]
(that: Iterator[B], thisElem: A1, thatElem: B1): CloseableIterator[(A1, B1)]
-
def
zipWithIndex
: CloseableIterator[(B, Int)] { ... /* 2 definitions in type refinement */ }
Deprecated Value Members
-
def
append
[B >: B]
(that: Iterator[B]): Iterator[B]
-
def
counted
: CountedIterator[B]
-
def
findIndexOf
(p: (B) ⇒ Boolean): Int
-
def
readInto
[B >: B]
(xs: Array[B]): Unit
-
def
readInto
[B >: B]
(xs: Array[B], start: Int): Unit
-
def
readInto
[B >: B]
(xs: Array[B], start: Int, sz: Int): Unit
Inherited from Closeable
Inherited from Iterator[B]
Inherited from TraversableOnce[B]
Inherited from GenTraversableOnce[B]
Inherited from AnyRef
Inherited from Any