scala.collection.IndexedSeqViewLike

trait ZippedAll

[source: scala/collection/IndexedSeqViewLike.scala]

trait ZippedAll[A1 >: A, B]
extends Transformed[(A1, B)] with AnyRef
Value Summary
protected[this] abstract val other : Iterable[B]
abstract val thatElem : B
abstract val thisElem : A1
Values and Variables inherited from Transformed
underlying
Method Summary
def apply (idx : Int) : (A1, B)
Returns the elements at position `idx`
override def iterator : Iterator[(A1, B)]
Creates a new iterator over all elements contained in this iterable object.
def length : Int
Returns the length of the sequence.
override def stringPrefix : java.lang.String
Defines the prefix of this object's toString representation.
Methods inherited from IndexedSeqViewLike
newAppended, newMapped, newFlatMapped, newFiltered, newSliced, newDroppedWhile, newTakenWhile, newZipped, newZippedAll, newReversed, newPatched
Methods inherited from SeqViewLike
reverse, patch, padTo
Methods inherited from IterableViewLike
zip, zipWithIndex, zipAll
Methods inherited from TraversableViewLike
newBuilder, force, ++, ++, map, flatMap, filter, init, drop, take, slice, dropWhile, takeWhile, span, splitAt
Methods inherited from IndexedSeq
companion
Methods inherited from IndexedSeqLike
thisCollection, toCollection, isEmpty, foreach, forall, exists, find, foldLeft, foldRight, reduceLeft, reduceRight, head, tail, last, takeRight, dropRight, sameElements, copyToArray, lengthCompare, segmentLength, indexWhere, lastIndexWhere, reverseIterator, startsWith, endsWith, view, view
Methods inherited from SeqLike
size, isDefinedAt, prefixLength, indexWhere, findIndexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexWhere, reverseMap, reversedElements, startsWith, indexOfSeq, indexOfSeq, lastIndexOfSeq, lastIndexOfSeq, contains, union, diff, intersect, removeDuplicates, updated, +:, :+, sortWith, sortWith, sortBy, toSeq, indices, hashCode, equals, toString, findLastIndexOf, equalsWith, containsSlice, projection
Methods inherited from IterableLike
elements, toIterable, toStream, canEqual, first, firstOption
Methods inherited from GenericTraversableTemplate
genericBuilder, unzip, flatten, transpose
Methods inherited from TraversableLike
repr, nonEmpty, hasDefiniteSize, filterNot, partialMap, remove, partition, groupBy, count, /:, :\, reduceLeftOption, reduceRightOption, sum, product, min, max, headOption, lastOption, copyToBuffer, copyToArray, toArray, toList, toIndexedSeq, toSet, mkString, mkString, mkString, addString, addString, addString, withFilter
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
compose
Methods inherited from AnyRef
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Value Details
protected[this] abstract val other : Iterable[B]

abstract val thisElem : A1

abstract val thatElem : B

Method Details
override def iterator : Iterator[(A1, B)]
Creates a new iterator over all elements contained in this iterable object.
Returns
the new iterator

def length : Int
Returns the length of the sequence.

def apply(idx : Int) : (A1, B)
Returns the elements at position `idx`

override def stringPrefix : java.lang.String
Defines the prefix of this object's toString representation.