class WindowedBlockIterator[T <: BlockWithSize] extends Iterator[Seq[BlockRange[T]]]
Given a set of blocks, this iterator returns BlockRanges
of such blocks that fit windowSize. The ranges are just logical
chunks of the blocks, so this class performs no memory management or copying.
If a block is too large for the window, the block will be
returned in next() until the full block can be covered.
For example, given a block that is 4 window-sizes in length: block = [sb1, sb2, sb3, sb4]
The window will return on next() four "sub-blocks", governed by windowSize:
window.next() // sb1
window.next() // sb2
window.next() // sb3
window.next() // sb4
If blocks are smaller than the windowSize, they will be packed:
block1 = [b1]
block2 = [b2]
window.next() // [b1, b2]
A mix of both scenarios above is possible: block1 = [sb11, sb12, sb13] // where sb13 is smaller than window length block2 = [b2]
window.next() // sb11 window.next() // sb12 window.next() // [sb13, b2]
- T
- the specific type of
BlockWithSize
- Note
this class does not own
,transferBlocksthis class is not thread safe
- Alphabetic
- By Inheritance
- WindowedBlockIterator
- Iterator
- TraversableOnce
- GenTraversableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Type Members
- case class BlocksForWindow(lastBlockIndex: Option[Int], blockRanges: Seq[BlockRange[T]], hasMoreBlocks: Boolean) extends Product with Serializable
-
class
GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
- Definition Classes
- Iterator
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++[B >: Seq[BlockRange[T]]](that: ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
final
def
==(arg0: Any): Boolean
- 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, Seq[BlockRange[T]]) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
buffered: BufferedIterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
collect[B](pf: PartialFunction[Seq[BlockRange[T]], B]): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
collecthas changed. The previous behavior can be reproduced withtoSeq.
-
def
collectFirst[B](pf: PartialFunction[Seq[BlockRange[T]], B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
contains(elem: Any): Boolean
- Definition Classes
- Iterator
-
def
copyToArray[B >: Seq[BlockRange[T]]](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Seq[BlockRange[T]]](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Seq[BlockRange[T]]](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: Seq[BlockRange[T]]](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
corresponds[B](that: GenTraversableOnce[B])(p: (Seq[BlockRange[T]], B) ⇒ Boolean): Boolean
- Definition Classes
- Iterator
-
def
count(p: (Seq[BlockRange[T]]) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
drop(n: Int): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
dropWhile(p: (Seq[BlockRange[T]]) ⇒ Boolean): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
duplicate: (Iterator[Seq[BlockRange[T]]], Iterator[Seq[BlockRange[T]]])
- Definition Classes
- Iterator
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exists(p: (Seq[BlockRange[T]]) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
filter(p: (Seq[BlockRange[T]]) ⇒ Boolean): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
filterNot(p: (Seq[BlockRange[T]]) ⇒ Boolean): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: (Seq[BlockRange[T]]) ⇒ Boolean): Option[Seq[BlockRange[T]]]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
flatMap[B](f: (Seq[BlockRange[T]]) ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
fold[A1 >: Seq[BlockRange[T]]](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, Seq[BlockRange[T]]) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: (Seq[BlockRange[T]], B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
forall(p: (Seq[BlockRange[T]]) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: (Seq[BlockRange[T]]) ⇒ U): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
grouped[B >: Seq[BlockRange[T]]](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
hasDefiniteSize: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
hasNext: Boolean
- Definition Classes
- WindowedBlockIterator → Iterator
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
indexOf[B >: Seq[BlockRange[T]]](elem: B, from: Int): Int
- Definition Classes
- Iterator
-
def
indexOf[B >: Seq[BlockRange[T]]](elem: B): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Seq[BlockRange[T]]) ⇒ Boolean, from: Int): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Seq[BlockRange[T]]) ⇒ Boolean): Int
- Definition Classes
- Iterator
-
def
isEmpty: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isTraversableAgain: Boolean
- Definition Classes
- Iterator → GenTraversableOnce
-
def
length: Int
- Definition Classes
- Iterator
-
def
map[B](f: (Seq[BlockRange[T]]) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
max[B >: Seq[BlockRange[T]]](implicit cmp: Ordering[B]): Seq[BlockRange[T]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: (Seq[BlockRange[T]]) ⇒ B)(implicit cmp: Ordering[B]): Seq[BlockRange[T]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: Seq[BlockRange[T]]](implicit cmp: Ordering[B]): Seq[BlockRange[T]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: (Seq[BlockRange[T]]) ⇒ B)(implicit cmp: Ordering[B]): Seq[BlockRange[T]]
- 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
- Definition Classes
- AnyRef
-
def
next(): Seq[BlockRange[T]]
- Definition Classes
- WindowedBlockIterator → Iterator
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
padTo[A1 >: Seq[BlockRange[T]]](len: Int, elem: A1): Iterator[A1]
- Definition Classes
- Iterator
-
def
partition(p: (Seq[BlockRange[T]]) ⇒ Boolean): (Iterator[Seq[BlockRange[T]]], Iterator[Seq[BlockRange[T]]])
- Definition Classes
- Iterator
-
def
patch[B >: Seq[BlockRange[T]]](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- Definition Classes
- Iterator
-
def
product[B >: Seq[BlockRange[T]]](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduce[A1 >: Seq[BlockRange[T]]](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: Seq[BlockRange[T]]](op: (B, Seq[BlockRange[T]]) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: Seq[BlockRange[T]]](op: (B, Seq[BlockRange[T]]) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: Seq[BlockRange[T]]](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: Seq[BlockRange[T]]](op: (Seq[BlockRange[T]], B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: Seq[BlockRange[T]]](op: (Seq[BlockRange[T]], B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reversed: List[Seq[BlockRange[T]]]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements(that: Iterator[_]): Boolean
- Definition Classes
- Iterator
-
def
scanLeft[B](z: B)(op: (B, Seq[BlockRange[T]]) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
scanRight[B](z: B)(op: (Seq[BlockRange[T]], B) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
seq: Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
sizeHintIfCheap: Int
- Attributes
- protected[collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
sliceIterator(from: Int, until: Int): Iterator[Seq[BlockRange[T]]]
- Attributes
- protected
- Definition Classes
- Iterator
-
def
sliding[B >: Seq[BlockRange[T]]](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
span(p: (Seq[BlockRange[T]]) ⇒ Boolean): (Iterator[Seq[BlockRange[T]]], Iterator[Seq[BlockRange[T]]])
- Definition Classes
- Iterator
-
def
sum[B >: Seq[BlockRange[T]]](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
take(n: Int): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
takeWhile(p: (Seq[BlockRange[T]]) ⇒ Boolean): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Seq[BlockRange[T]], Col[Seq[BlockRange[T]]]]): Col[Seq[BlockRange[T]]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toArray[B >: Seq[BlockRange[T]]](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: Seq[BlockRange[T]]]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIndexedSeq: IndexedSeq[Seq[BlockRange[T]]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[Seq[BlockRange[T]]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toList: List[Seq[BlockRange[T]]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[Seq[BlockRange[T]], (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[Seq[BlockRange[T]]]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSet[B >: Seq[BlockRange[T]]]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: Stream[Seq[BlockRange[T]]]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- Iterator → AnyRef → Any
-
def
toTraversable: Traversable[Seq[BlockRange[T]]]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
toVector: Vector[Seq[BlockRange[T]]]
- 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( ... ) @native()
-
def
withFilter(p: (Seq[BlockRange[T]]) ⇒ Boolean): Iterator[Seq[BlockRange[T]]]
- Definition Classes
- Iterator
-
def
zip[B](that: Iterator[B]): Iterator[(Seq[BlockRange[T]], B)]
- Definition Classes
- Iterator
-
def
zipAll[B, A1 >: Seq[BlockRange[T]], B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
- Definition Classes
- Iterator
-
def
zipWithIndex: Iterator[(Seq[BlockRange[T]], Int)]
- Definition Classes
- Iterator
Deprecated Value Members
-
def
/:[B](z: B)(op: (B, Seq[BlockRange[T]]) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldLeft instead of /:
-
def
:\[B](z: B)(op: (Seq[BlockRange[T]], B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldRight instead of :\