Packages

c

scala.tools.nsc.util

JavaCharArrayReader

class JavaCharArrayReader extends Iterator[Char] with Cloneable

Source
JavaCharArrayReader.scala
Linear Supertypes
Cloneable, java.lang.Cloneable, collection.Iterator[Char], IterableOnceOps[Char, collection.Iterator, collection.Iterator[Char]], collection.IterableOnce[Char], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaCharArrayReader
  2. Cloneable
  3. Cloneable
  4. Iterator
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaCharArrayReader(buf: ofChar, decodeUni: Boolean, error: (String) ⇒ Unit)
  2. new JavaCharArrayReader(buf: ofChar, start: Int, decodeUni: Boolean, error: (String) ⇒ Unit)

Type Members

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toany2stringadd[JavaCharArrayReader] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: Char](xs: ⇒ collection.IterableOnce[B]): collection.Iterator[B]
    Definition Classes
    Iterator
    Annotations
    @inline()
  5. def ->[B](y: B): (JavaCharArrayReader, B)
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toArrowAssoc[JavaCharArrayReader] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  8. def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  9. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): b.type
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. var bp: Int
  12. def buffered: collection.BufferedIterator[Char]
    Definition Classes
    Iterator
  13. var ch: Char

    the line and column position of the current character

  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  15. def collect[B](pf: PartialFunction[Char, B]): collection.Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  16. def collectFirst[B](pf: PartialFunction[Char, B]): Option[B]
    Definition Classes
    IterableOnceOps
  17. def concat[B >: Char](xs: ⇒ collection.IterableOnce[B]): collection.Iterator[B]
    Definition Classes
    Iterator
  18. def contains(elem: Any): Boolean
    Definition Classes
    Iterator
  19. def copy: JavaCharArrayReader
  20. def copyToArray[B >: Char](xs: Array[B], start: Int, len: Int): xs.type
    Definition Classes
    IterableOnceOps
  21. def copyToArray[B >: Char](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOnceOps
  22. def count(p: (Char) ⇒ Boolean): Int
    Definition Classes
    IterableOnceOps
  23. def cpos: Int
  24. def distinct: collection.Iterator[Char]
    Definition Classes
    Iterator
  25. def distinctBy[B](f: (Char) ⇒ B): collection.Iterator[Char]
    Definition Classes
    Iterator
  26. def drop(n: Int): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  27. def dropWhile(p: (Char) ⇒ Boolean): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  28. def duplicate: (collection.Iterator[Char], collection.Iterator[Char])
    Definition Classes
    Iterator
  29. def ensuring(cond: (JavaCharArrayReader) ⇒ Boolean, msg: ⇒ Any): JavaCharArrayReader
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toEnsuring[JavaCharArrayReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: (JavaCharArrayReader) ⇒ Boolean): JavaCharArrayReader
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toEnsuring[JavaCharArrayReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean, msg: ⇒ Any): JavaCharArrayReader
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toEnsuring[JavaCharArrayReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean): JavaCharArrayReader
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toEnsuring[JavaCharArrayReader] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  35. def exists(p: (Char) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  36. def filter(p: (Char) ⇒ Boolean): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  37. def filterNot(p: (Char) ⇒ Boolean): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  38. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  39. def find(p: (Char) ⇒ Boolean): Option[Char]
    Definition Classes
    IterableOnceOps
  40. def flatMap[B](f: (Char) ⇒ collection.IterableOnce[B]): collection.Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  41. def flatten[B](implicit ev: (Char) ⇒ collection.IterableOnce[B]): collection.Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  42. def fold[A1 >: Char](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    IterableOnceOps
  43. def foldLeft[B](z: B)(op: (B, Char) ⇒ B): B
    Definition Classes
    IterableOnceOps
  44. def foldRight[B](z: B)(op: (Char, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  45. def forall(p: (Char) ⇒ Boolean): Boolean
    Definition Classes
    IterableOnceOps
  46. def foreach[U](f: (Char) ⇒ U): Unit
    Definition Classes
    IterableOnceOps
  47. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toStringFormat[JavaCharArrayReader] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  48. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  49. def grouped[B >: Char](size: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  50. def hasNext: Boolean
    Definition Classes
    JavaCharArrayReader → Iterator
  51. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  52. def indexOf[B >: Char](elem: B, from: Int): Int
    Definition Classes
    Iterator
  53. def indexOf[B >: Char](elem: B): Int
    Definition Classes
    Iterator
  54. def indexWhere(p: (Char) ⇒ Boolean, from: Int): Int
    Definition Classes
    Iterator
  55. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  56. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  57. var isUnicode: Boolean
  58. def iterator: collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnce
  59. def knownSize: Int
    Definition Classes
    IterableOnceOps
  60. final def length: Int
    Definition Classes
    Iterator
  61. def map[B](f: (Char) ⇒ B): collection.Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  62. def max[B >: Char](implicit ord: math.Ordering[B]): Char
    Definition Classes
    IterableOnceOps
  63. def maxBy[B](f: (Char) ⇒ B)(implicit cmp: math.Ordering[B]): Char
    Definition Classes
    IterableOnceOps
  64. def maxByOption[B](f: (Char) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Char]
    Definition Classes
    IterableOnceOps
  65. def maxOption[B >: Char](implicit ord: math.Ordering[B]): Option[Char]
    Definition Classes
    IterableOnceOps
  66. def min[B >: Char](implicit ord: math.Ordering[B]): Char
    Definition Classes
    IterableOnceOps
  67. def minBy[B](f: (Char) ⇒ B)(implicit cmp: math.Ordering[B]): Char
    Definition Classes
    IterableOnceOps
  68. def minByOption[B](f: (Char) ⇒ B)(implicit cmp: math.Ordering[B]): Option[Char]
    Definition Classes
    IterableOnceOps
  69. def minOption[B >: Char](implicit ord: math.Ordering[B]): Option[Char]
    Definition Classes
    IterableOnceOps
  70. def mkString: String
    Definition Classes
    IterableOnceOps
  71. def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
  72. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  73. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  74. def next(): Char
    Definition Classes
    JavaCharArrayReader → Iterator
  75. def nextOption(): Option[Char]
    Definition Classes
    Iterator
  76. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  77. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  78. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  79. def patch[B >: Char](from: Int, patchElems: collection.Iterator[B], replaced: Int): collection.Iterator[B]
    Definition Classes
    Iterator
  80. def product[B >: Char](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  81. def reduce[B >: Char](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  82. def reduceLeft[B >: Char](op: (B, Char) ⇒ B): B
    Definition Classes
    IterableOnceOps
  83. def reduceLeftOption[B >: Char](op: (B, Char) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  84. def reduceOption[B >: Char](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  85. def reduceRight[B >: Char](op: (Char, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
  86. def reduceRightOption[B >: Char](op: (Char, B) ⇒ B): Option[B]
    Definition Classes
    IterableOnceOps
  87. def reversed: collection.Iterable[Char]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  88. def sameElements[B >: Char](that: collection.IterableOnce[B]): Boolean
    Definition Classes
    Iterator
  89. def scanLeft[B](z: B)(op: (B, Char) ⇒ B): collection.Iterator[B]
    Definition Classes
    Iterator → IterableOnceOps
  90. def size: Int
    Definition Classes
    IterableOnceOps
  91. def slice(from: Int, until: Int): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  92. def sliceIterator(from: Int, until: Int): collection.Iterator[Char]
    Attributes
    protected
    Definition Classes
    Iterator
  93. def sliding[B >: Char](size: Int, step: Int): GroupedIterator[B]
    Definition Classes
    Iterator
  94. def span(p: (Char) ⇒ Boolean): (collection.Iterator[Char], collection.Iterator[Char])
    Definition Classes
    Iterator → IterableOnceOps
  95. def sum[B >: Char](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  96. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  97. def take(n: Int): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  98. def takeWhile(p: (Char) ⇒ Boolean): collection.Iterator[Char]
    Definition Classes
    Iterator → IterableOnceOps
  99. def to[C1](factory: Factory[Char, C1]): C1
    Definition Classes
    IterableOnceOps
  100. def toArray[B >: Char](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  101. def toIndexedSeq: collection.immutable.IndexedSeq[Char]
    Definition Classes
    IterableOnceOps
  102. def toList: collection.immutable.List[Char]
    Definition Classes
    IterableOnceOps
  103. def toMap[K, V](implicit ev: <:<[Char, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  104. def toSeq: collection.immutable.Seq[Char]
    Definition Classes
    IterableOnceOps
  105. def toSet[B >: Char]: collection.immutable.Set[B]
    Definition Classes
    IterableOnceOps
  106. def toString(): String
    Definition Classes
    Iterator → AnyRef → Any
  107. def toVector: collection.immutable.Vector[Char]
    Definition Classes
    IterableOnceOps
  108. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  109. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  110. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  111. def withFilter(p: (Char) ⇒ Boolean): collection.Iterator[Char]
    Definition Classes
    Iterator
  112. def zip[B](that: collection.IterableOnce[B]): collection.Iterator[(Char, B)]
    Definition Classes
    Iterator
  113. def zipAll[A1 >: Char, B](that: collection.IterableOnce[B], thisElem: A1, thatElem: B): collection.Iterator[(A1, B)]
    Definition Classes
    Iterator
  114. def zipWithIndex: collection.Iterator[(Char, Int)]
    Definition Classes
    Iterator → IterableOnceOps
  115. def [B](y: B): (JavaCharArrayReader, B)
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toArrowAssoc[JavaCharArrayReader] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, Char) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead of /: on IterableOnce

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

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: (Char, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead of :\ on IterableOnce

  4. final def :\[B](z: B)(op: (Char, B) ⇒ B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

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

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

  6. def find(p: (Char) ⇒ Boolean): Option[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead of .find on IterableOnce

  7. def flatMap[B](f: (Char) ⇒ collection.IterableOnce[B]): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  8. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead of .fold on IterableOnce

  9. def foldLeft[B](z: B)(op: (B, Char) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead of .foldLeft on IterableOnce

  10. def foldRight[B](z: B)(op: (Char, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead of .foldLeft on IterableOnce

  11. def foreach[U](f: (Char) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead of .foreach(...) on IterableOnce

  12. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead of .isEmpty on IterableOnce

  13. def map[B](f: (Char) ⇒ B): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  14. def mkString: String
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce

  15. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce

  16. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead of .mkString on IterableOnce

  17. def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).sameElements(that)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements for sameElements on Iterable or IterableOnce

  18. def seq: JavaCharArrayReader.this.type
    Definition Classes
    Iterator
    Annotations
    @deprecated
    Deprecated

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

  19. def to[C1](factory: Factory[Char, C1]): C1
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use factory.from(it) instead of it.to(factory) for IterableOnce

  20. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it).toArray

  21. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  22. final def toBuffer[B >: Char]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

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

    (Since version 2.13.0) Use Iterable.from(it) instead of it.toIterable

  24. def toIterator: collection.Iterator[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) toIterator has been renamed to iterator

  25. final def toIterator: collection.Iterator[Char]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  26. def toList: collection.immutable.List[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use List.from(it) instead of it.toList

  27. def toMap[K, V](implicit ev: <:<[Char, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Map.from(it) instead of it.toVector on IterableOnce

  28. def toSeq: collection.immutable.Seq[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Seq.from(it) instead of it.toSeq

  29. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Set.from(it) instead of it.toSet

  30. def toStream: collection.immutable.Stream[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Stream.from(it) instead of it.toStream

  31. final def toStream: collection.immutable.Stream[Char]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Stream.from(it) instead of it.toStream

  32. def toVector: collection.immutable.Vector[Char]
    Implicit
    This member is added by an implicit conversion from JavaCharArrayReader toIterableOnceExtensionMethods[Char] 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:
    (javaCharArrayReader: IterableOnceExtensionMethods[Char]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Vector.from(it) instead of it.toVector on IterableOnce

Inherited from Cloneable

Inherited from java.lang.Cloneable

Inherited from collection.Iterator[Char]

Inherited from IterableOnceOps[Char, collection.Iterator, collection.Iterator[Char]]

Inherited from collection.IterableOnce[Char]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromJavaCharArrayReader to IterableOnceExtensionMethods[Char]

Inherited by implicit conversion any2stringadd fromJavaCharArrayReader to any2stringadd[JavaCharArrayReader]

Inherited by implicit conversion StringFormat fromJavaCharArrayReader to StringFormat[JavaCharArrayReader]

Inherited by implicit conversion Ensuring fromJavaCharArrayReader to Ensuring[JavaCharArrayReader]

Inherited by implicit conversion ArrowAssoc fromJavaCharArrayReader to ArrowAssoc[JavaCharArrayReader]

Ungrouped