Packages

c

cc.drx.Archive

ArchiveReader

class ArchiveReader extends Iterator[PathEntry]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ArchiveReader
  2. Iterator
  3. IterableOnceOps
  4. IterableOnce
  5. AnyRef
  6. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by richDrxAny
  3. by richDrxIterator
  4. by DrxBoundOps
  5. by any2stringadd
  6. by StringFormat
  7. by Ensuring
  8. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ArchiveReader(ais: ArchiveInputStream)

Type Members

  1. class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]]
    Definition Classes
    Iterator

Value Members

  1. final def ++[B >: PathEntry](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  2. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  3. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  4. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  5. def applyIf(t: Boolean, f: (ArchiveReader) => ArchiveReader): ArchiveReader
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  6. def applyIf(t: (ArchiveReader) => Boolean)(f: (ArchiveReader) => ArchiveReader): ArchiveReader

    better chaining for types

    better chaining for types

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  7. def buffered: BufferedIterator[PathEntry]
    Definition Classes
    Iterator
  8. def close: Unit
  9. def collect[B](pf: PartialFunction[PathEntry, B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  10. def collectFirst[B](pf: PartialFunction[PathEntry, B]): Option[B]
    Definition Classes
    IterableOnceOps
  11. def concat[B >: PathEntry](xs: => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator
  12. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  13. def copyToArray[B >: PathEntry](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  14. def copyToArray[B >: PathEntry](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  15. def copyToArray[B >: PathEntry](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  16. def corresponds[B](that: IterableOnce[B])(p: (PathEntry, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  17. def count(p: (PathEntry) => Boolean): Int
    Definition Classes
    IterableOnceOps
  18. def countBy[B](f: (PathEntry) => B): Map[B, Int]

    SI-7365 a more efficient binning without using groupBy (the collection is lost here unless identity is used)

    SI-7365 a more efficient binning without using groupBy (the collection is lost here unless identity is used)

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  19. def countWhile(f: (PathEntry) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  20. def distinct: Iterator[PathEntry]
    Definition Classes
    Iterator
  21. def distinctBy[B](f: (PathEntry) => B): Iterator[PathEntry]
    Definition Classes
    Iterator
  22. def drop(n: Int): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  23. def dropWhile(p: (PathEntry) => Boolean): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  24. def duplicate: (Iterator[PathEntry], Iterator[PathEntry])
    Definition Classes
    Iterator
  25. def elementOf(xs: Set[ArchiveReader]): Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  26. def evens: Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  27. def exists(p: (PathEntry) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  28. def extract(outputDir: File = File("."), streamGenerator: StreamGenerator = StreamGenerator.Normal): Unit
  29. def files: Iterator[FileEntry]

    filter paths by files only (skip dirs)

  30. def filter(p: (PathEntry) => Boolean): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  31. def filterNot(p: (PathEntry) => Boolean): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  32. def find(p: (PathEntry) => Boolean): Option[PathEntry]
    Definition Classes
    IterableOnceOps
  33. def fitString(sizes: Int*): String

    Like mkString but fits(pads) rows to a size

    Like mkString but fits(pads) rows to a size

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  34. def fitString: String

    Like mkString but fits(pads) rows to a size

    Like mkString but fits(pads) rows to a size

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  35. def flatMap[B](f: (PathEntry) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  36. def flatten[B](implicit ev: (PathEntry) => IterableOnce[B]): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  37. def fold[A1 >: PathEntry](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  38. def foldLeft[B](z: B)(op: (B, PathEntry) => B): B
    Definition Classes
    IterableOnceOps
  39. def foldRight[B](z: B)(op: (PathEntry, B) => B): B
    Definition Classes
    IterableOnceOps
  40. def forall(p: (PathEntry) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  41. def foreach[U](f: (PathEntry) => U): Unit
    Definition Classes
    IterableOnceOps
  42. def foreachBy(dt: Time)(f: (PathEntry) => Unit)(implicit sc: drx.ScheduledContext, ec: drx.ExecutionContext): drx.Future[Unit]

    async apply a function to a collection with a spaced time delay

    async apply a function to a collection with a spaced time delay

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  43. def getNonEmpty: Option[Iterator[PathEntry]]

    this is useful for making sure things like maxBy won't fail

    this is useful for making sure things like maxBy won't fail

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  44. def groupRuns: Vector[Vector[PathEntry]]

    group matches similar runs see also groupRunsBy to group without an intermediate map

    group matches similar runs see also groupRunsBy to group without an intermediate map

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  45. def groupRunsBy[B](f: (PathEntry) => B): Vector[Vector[PathEntry]]

    group runs that are equivalent after a transformation

    group runs that are equivalent after a transformation

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  46. def groupWhile(f: (PathEntry, PathEntry) => Boolean): Vector[Vector[PathEntry]]

    most generic base function to create group by like run length encodings, see also the simpler groupRuns and groupRunsBy

    most generic base function to create group by like run length encodings, see also the simpler groupRuns and groupRunsBy

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  47. def grouped[B >: PathEntry](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  48. def hasNext: Boolean
    Definition Classes
    ArchiveReader → Iterator
  49. def indexOf[B >: PathEntry](elem: B, from: Int): Int
    Definition Classes
    Iterator
  50. def indexOf[B >: PathEntry](elem: B): Int
    Definition Classes
    Iterator
  51. def indexWhere(p: (PathEntry) => Boolean, from: Int): Int
    Definition Classes
    Iterator
  52. def integrate(f: (PathEntry) => Double)(implicit num: Numeric[PathEntry]): Double

    trapezoidal integration

    trapezoidal integration

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  53. def isEmpty: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecatedOverriding("isEmpty is defined as !hasNext; override hasNext instead", "2.13.0")
  54. def isTraversableAgain: Boolean
    Definition Classes
    IterableOnceOps
  55. final def iterator: Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnce
    Annotations
    @inline()
  56. def keepOpen: ArchiveReader
  57. def knownSize: Int
    Definition Classes
    IterableOnce
  58. final def length: Int
    Definition Classes
    Iterator
    Annotations
    @inline()
  59. def map[B](f: (PathEntry) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  60. def mapFrom[B](f: (PathEntry) => B): Map[B, PathEntry]

    like group by but clobbers unique id's

    like group by but clobbers unique id's

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  61. def mapIf[B](pf: PartialFunction[PathEntry, B]): Map[PathEntry, B]

    collect like operations

    collect like operations

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  62. def mapLinear[B](f: (PathEntry) => drx.Future[B])(implicit ec: drx.ExecutionContext): drx.Future[List[B]]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  63. def mapWith[B](f: (PathEntry) => B): Map[PathEntry, B]

    like zipWith but clobers uniq elements

    like zipWith but clobers uniq elements

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  64. def max[B >: PathEntry](implicit ord: Ordering[B]): PathEntry
    Definition Classes
    IterableOnceOps
  65. def maxBy[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): PathEntry
    Definition Classes
    IterableOnceOps
  66. def maxByOption[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): Option[PathEntry]
    Definition Classes
    IterableOnceOps
  67. def maxOption[B >: PathEntry](implicit ord: Ordering[B]): Option[PathEntry]
    Definition Classes
    IterableOnceOps
  68. def min[B >: PathEntry](implicit ord: Ordering[B]): PathEntry
    Definition Classes
    IterableOnceOps
  69. def minBy[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): PathEntry
    Definition Classes
    IterableOnceOps
  70. def minByOption[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): Option[PathEntry]
    Definition Classes
    IterableOnceOps
  71. def minOption[B >: PathEntry](implicit ord: Ordering[B]): Option[PathEntry]
    Definition Classes
    IterableOnceOps
  72. def mkCommas: String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  73. def mkLines: String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  74. def mkSpaces: String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  75. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  76. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  77. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  78. def next(): PathEntry
    Definition Classes
    ArchiveReader → Iterator
  79. def nextOption(): Option[PathEntry]
    Definition Classes
    Iterator
  80. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  81. def noneIf(f: (ArchiveReader) => Boolean): Option[ArchiveReader]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  82. def odds: Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  83. def optionIf(f: (ArchiveReader) => Boolean): Option[ArchiveReader]

    optionally wrap an object

    optionally wrap an object

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  84. def padTo[B >: PathEntry](len: Int, elem: B): Iterator[B]
    Definition Classes
    Iterator
  85. def partition(p: (PathEntry) => Boolean): (Iterator[PathEntry], Iterator[PathEntry])
    Definition Classes
    Iterator
  86. def patch[B >: PathEntry](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
    Definition Classes
    Iterator
  87. def paths: Iterator[PathEntry]

    iterate all dirs and files

  88. def preApply[B](f: (ArchiveReader) => B): B

    a preApply f => f(a)

    a preApply f => f(a)

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  89. def product[B >: PathEntry](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  90. def ratioWhere(p: (PathEntry) => Boolean): Ratio
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  91. def reduce[B >: PathEntry](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  92. def reduceLeft[B >: PathEntry](op: (B, PathEntry) => B): B
    Definition Classes
    IterableOnceOps
  93. def reduceLeftOption[B >: PathEntry](op: (B, PathEntry) => B): Option[B]
    Definition Classes
    IterableOnceOps
  94. def reduceOption[B >: PathEntry](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  95. def reduceRight[B >: PathEntry](op: (PathEntry, B) => B): B
    Definition Classes
    IterableOnceOps
  96. def reduceRightOption[B >: PathEntry](op: (PathEntry, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  97. def sameElements[B >: PathEntry](that: IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  98. def sampleByRatio(reductionRatio: Double)(implicit rand: Rand): Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  99. def scanLeft[B](z: B)(op: (B, PathEntry) => B): Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  100. def sideEffect(f: (ArchiveReader) => Unit): ArchiveReader

    side effect filter

    side effect filter

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  101. def size: Int
    Definition Classes
    IterableOnceOps
  102. def skip(skipSize: Int, takeSize: Int = 1, offset: Int = 0): Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  103. def slice(from: Int, until: Int): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  104. def sliding[B >: PathEntry](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  105. def someIf(f: (ArchiveReader) => Boolean): Option[ArchiveReader]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  106. def span(p: (PathEntry) => Boolean): (Iterator[PathEntry], Iterator[PathEntry])
    Definition Classes
    Iterator → IterableOnceOps
  107. def splitAt(n: Int): (Iterator[PathEntry], Iterator[PathEntry])
    Definition Classes
    IterableOnceOps
  108. def statBy(f: (PathEntry) => Vec): StatVec
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  109. def statBy(f: (PathEntry) => Double): Stat
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  110. def stepper[S <: Stepper[_]](implicit shape: StepperShape[PathEntry, S]): S
    Definition Classes
    IterableOnce
  111. def sum[B >: PathEntry](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  112. def take(n: Int): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  113. def takeWhile(p: (PathEntry) => Boolean): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  114. def tapEach[U](f: (PathEntry) => U): Iterator[PathEntry]
    Definition Classes
    Iterator → IterableOnceOps
  115. val thisAny: ArchiveReader
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
  116. def till(maxArg: ArchiveReader): Bound[ArchiveReader]

    Bound construction since the Range constructor is deprecated

    Bound construction since the Range constructor is deprecated

    Implicit
    This member is added by an implicit conversion from ArchiveReader toBoundOps[ArchiveReader] performed by method DrxBoundOps in cc.drx.predef.Enrich.This conversion will take place only if an implicit value of type Boundable[ArchiveReader] is in scope.
    Definition Classes
    BoundOps
  117. def to[C1](factory: Factory[PathEntry, C1]): C1
    Definition Classes
    IterableOnceOps
  118. def toArray[B >: PathEntry](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  119. final def toBuffer[B >: PathEntry]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  120. def toIndexedSeq: IndexedSeq[PathEntry]
    Definition Classes
    IterableOnceOps
  121. def toList: List[PathEntry]
    Definition Classes
    IterableOnceOps
  122. def toMap[K, V](implicit ev: <:<[PathEntry, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  123. def toSeq: Seq[PathEntry]
    Definition Classes
    IterableOnceOps
  124. def toSet[B >: PathEntry]: Set[B]
    Definition Classes
    IterableOnceOps
  125. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  126. def toVector: Vector[PathEntry]
    Definition Classes
    IterableOnceOps
  127. def walk(parent: FileEntry)(implicit lib: ArchiveLib): Iterator[FileEntry]
  128. def withFilter(p: (PathEntry) => Boolean): Iterator[PathEntry]
    Definition Classes
    Iterator
  129. val xs: Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  130. def zip[B](that: IterableOnce[B]): Iterator[(PathEntry, B)]
    Definition Classes
    Iterator
  131. def zipAll[A1 >: PathEntry, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
    Definition Classes
    Iterator
  132. def zipFrom[B](f: (PathEntry) => B): Iterator[(B, PathEntry)]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  133. def zipIf[B](pf: PartialFunction[PathEntry, B]): Iterator[(PathEntry, B)]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  134. def zipTo[B, C](ys: Iterator[B])(f: (PathEntry, B) => C): Iterator[C]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  135. def zipWith[B](f: (PathEntry) => B): Iterator[(PathEntry, B)]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
  136. def zipWithIndex: Iterator[(PathEntry, Int)]
    Definition Classes
    Iterator → IterableOnceOps

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, PathEntry) => B): B
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  2. final def /:[B](z: B)(op: (B, PathEntry) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def /@[B](f: Applicable[PathEntry, B]): Iterator[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to much magic

  4. def /@[B](f: (PathEntry) => B): Iterator[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to much magic

  5. def :\[B](z: B)(op: (PathEntry, B) => B): B
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  6. final def :\[B](z: B)(op: (PathEntry, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  7. def ?>(f: (ArchiveReader) => Boolean): Option[ArchiveReader]

    alias for option if

    alias for option if

    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) to many symbols are hard to undertand

  8. def aggregate[B](z: => B)(seqop: (B, PathEntry) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  9. def collectFirst[B](f: PartialFunction[PathEntry, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  10. def copyToBuffer(dest: Buffer[PathEntry]): Unit
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  11. final def copyToBuffer[B >: PathEntry](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  12. def count(f: (PathEntry) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  13. def exists(f: (PathEntry) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  14. def filter(f: (PathEntry) => Boolean): Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  15. def find(p: (PathEntry) => Boolean): Option[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  16. def flatMap[B](f: (PathEntry) => IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.flatMap instead or consider requiring an Iterable

  17. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  18. def foldLeft[B](z: B)(op: (B, PathEntry) => B): B
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  19. def foldRight[B](z: B)(op: (PathEntry, B) => B): B
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  20. def forall(f: (PathEntry) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  21. def foreach[U](f: (PathEntry) => U): Unit
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  22. final def hasDefiniteSize: Boolean
    Definition Classes
    Iterator → IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) hasDefiniteSize on Iterator is the same as isEmpty

  23. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  24. def map[B](f: (PathEntry) => B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.map instead or consider requiring an Iterable

  25. def mapBy[B](f: (PathEntry) => B): Map[B, PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.2.13) use mapFrom(f) since it is beter in line wiht the zipFrom command

  26. def max(implicit ord: Ordering[PathEntry]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  27. def maxBy[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  28. def min(implicit ord: Ordering[PathEntry]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  29. def minBy[B](f: (PathEntry) => B)(implicit cmp: Ordering[B]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  30. def mkMap[B](f: (PathEntry) => B): Map[PathEntry, B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.8) use mapWith(f) or mapBy(f)

  31. def mkString: String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  32. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  33. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  34. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  35. def product(implicit num: Numeric[PathEntry]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  36. def reduce(f: (PathEntry, PathEntry) => PathEntry): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  37. def reduceLeft(f: (PathEntry, PathEntry) => PathEntry): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  38. def reduceLeftOption(f: (PathEntry, PathEntry) => PathEntry): Option[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  39. def reduceOption(f: (PathEntry, PathEntry) => PathEntry): Option[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  40. def reduceRight(f: (PathEntry, PathEntry) => PathEntry): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  41. def reduceRightOption(f: (PathEntry, PathEntry) => PathEntry): Option[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  42. def sameElements[B >: A](that: IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  43. def sample(reductionRatio: Double)(implicit rand: Rand): Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxIterator[PathEntry] performed by method richDrxIterator in cc.drx.predef.Enrich.
    Definition Classes
    DrxIterator
    Annotations
    @deprecated
    Deprecated

    (Since version 0.2.13) use sampleByRatio instead for typesafety between Traverable and IndexedSeq samples

  44. def scanRight[B](z: B)(op: (PathEntry, B) => B): Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Call scanRight on an Iterable instead.

  45. def seq: ArchiveReader.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterator.seq always returns the iterator itself

  46. def size: Int
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  47. def sum(implicit num: Numeric[PathEntry]): PathEntry
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  48. def to[C1](factory: Factory[PathEntry, C1]): C1
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  49. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  50. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  51. def toIndexedSeq: IndexedSeq[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  52. final def toIterable: Iterable[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  53. def toIterator: Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  54. final def toIterator: Iterator[PathEntry]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  55. def toList: List[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  56. def toMap[K, V](implicit ev: <:<[PathEntry, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  57. def toSeq: Seq[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  58. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  59. def toStream: Stream[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  60. final def toStream: Stream[PathEntry]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  61. final def toTraversable: Traversable[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  62. def toVector: Vector[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  63. def withFilter(f: (PathEntry) => Boolean): Iterator[PathEntry]
    Implicit
    This member is added by an implicit conversion from ArchiveReader toIterableOnceExtensionMethods[PathEntry] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    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:
    (archiveReader: IterableOnceExtensionMethods[PathEntry]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  64. def |>[B](f: (ArchiveReader) => B): B
    Implicit
    This member is added by an implicit conversion from ArchiveReader toDrxAny[ArchiveReader] performed by method richDrxAny in cc.drx.predef.Enrich.
    Definition Classes
    DrxAny
    Annotations
    @deprecated
    Deprecated

    (Since version v0.2.15) use preApply if you must (symbols are concise without concision)