trait LookaheadSource extends Iterator[Char]
- Alphabetic
- By Inheritance
- LookaheadSource
- Iterator
- TraversableOnce
- GenTraversableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
-
abstract
def
consume(): Char
- Attributes
- protected
-
abstract
def
hasNext: Boolean
- Definition Classes
- LookaheadSource → Iterator
- abstract def peek(offset: Int): Option[Char]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++[B >: Char](that: ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
/:[B](z: B)(op: (B, Char) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
:\[B](z: B)(op: (Char, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, Char) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
buffered: BufferedIterator[Char]
- Definition Classes
- Iterator
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
collect[B](pf: PartialFunction[Char, B]): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
collecthas changed. The previous behavior can be reproduced withtoSeq.
-
def
collectFirst[B](pf: PartialFunction[Char, B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
consumeString(str: String): Boolean
If the next characters in the input stream are equal to the given string, consume them and return true.
If the next characters in the input stream are equal to the given string, consume them and return true. Otherwise return false.
-
def
consumeWhile(p: (Char) ⇒ Boolean): String
Same as de.uni_luebeck.isp.compacom.LookaheadSource.peekWhile, but consume the characters.
-
def
contains(elem: Any): Boolean
- Definition Classes
- Iterator
-
def
copyToArray[B >: Char](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Char](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: Char](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: Char](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
corresponds[B](that: GenTraversableOnce[B])(p: (Char, B) ⇒ Boolean): Boolean
- Definition Classes
- Iterator
-
def
count(p: (Char) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
val
currentColumn: Int
- Attributes
- protected
-
val
currentLine: Int
- Attributes
- protected
-
def
discard(n: Int): Unit
Consume and ignore the next
ncharacters in the stream.Consume and ignore the next
ncharacters in the stream.- Attributes
- protected
-
def
drop(n: Int): Iterator[Char]
- Definition Classes
- Iterator
-
def
dropWhile(p: (Char) ⇒ Boolean): Iterator[Char]
- Definition Classes
- Iterator
-
def
duplicate: (Iterator[Char], Iterator[Char])
- Definition Classes
- Iterator
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exists(p: (Char) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
filter(p: (Char) ⇒ Boolean): Iterator[Char]
- Definition Classes
- Iterator
-
def
filterNot(p: (Char) ⇒ Boolean): Iterator[Char]
- Definition Classes
- Iterator
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: (Char) ⇒ Boolean): Option[Char]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
flatMap[B](f: (Char) ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
fold[A1 >: Char](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, Char) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: (Char, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
forall(p: (Char) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: (Char) ⇒ U): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
grouped[B >: Char](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
hasDefiniteSize: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
def
indexOf[B >: Char](elem: B, from: Int): Int
- Definition Classes
- Iterator
-
def
indexOf[B >: Char](elem: B): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Char) ⇒ Boolean, from: Int): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: (Char) ⇒ Boolean): Int
- Definition Classes
- Iterator
-
def
isEmpty: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isTraversableAgain: Boolean
- Definition Classes
- Iterator → GenTraversableOnce
-
def
length: Int
- Definition Classes
- Iterator
-
def
map[B](f: (Char) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
max[B >: Char](implicit cmp: Ordering[B]): Char
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: Char](implicit cmp: Ordering[B]): Char
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: (Char) ⇒ B)(implicit cmp: Ordering[B]): Char
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
next(): Char
- Definition Classes
- LookaheadSource → Iterator
- def nextOption(): Option[Char]
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
padTo[A1 >: Char](len: Int, elem: A1): Iterator[A1]
- Definition Classes
- Iterator
-
def
partition(p: (Char) ⇒ Boolean): (Iterator[Char], Iterator[Char])
- Definition Classes
- Iterator
-
def
patch[B >: Char](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- Definition Classes
- Iterator
-
def
peekSource: LookaheadSource
A LookaheadSource that will produce the characters from this source by peeking into it.
A LookaheadSource that will produce the characters from this source by peeking into it.
When
val ps = s.peekSource,psmust not be used again afters.next()has been called. -
def
peekStream: Stream[Char]
A stream containing the characters returned by peek(0) onwards.
A stream containing the characters returned by peek(0) onwards.
The stream returned by this method must not be used again after
next()has been called on this source.- Attributes
- protected
-
def
peekString(length: Int): String
Return a string containing the next
lengthcharacters without consuming any.Return a string containing the next
lengthcharacters without consuming any. If the stream contains less thanlengthcharacters, return a string containing all the remaining characters instead. -
def
peekWhile(p: (Char) ⇒ Boolean): String
Return a string containing all the characters in the input until the first that does not meet the predicate without consuming any.
- def position: Position
-
def
product[B >: Char](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduce[A1 >: Char](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: Char](op: (B, Char) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: Char](op: (B, Char) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: Char](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: Char](op: (Char, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: Char](op: (Char, B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reversed: List[Char]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements(that: Iterator[_]): Boolean
- Definition Classes
- Iterator
-
def
scanLeft[B](z: B)(op: (B, Char) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
scanRight[B](z: B)(op: (Char, B) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
seq: Iterator[Char]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
sizeHintIfCheap: Int
- Attributes
- protected[scala.collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): Iterator[Char]
- Definition Classes
- Iterator
-
def
sliceIterator(from: Int, until: Int): Iterator[Char]
- Attributes
- protected
- Definition Classes
- Iterator
-
def
sliding[B >: Char](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
span(p: (Char) ⇒ Boolean): (Iterator[Char], Iterator[Char])
- Definition Classes
- Iterator
-
def
sum[B >: Char](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
take(n: Int): Iterator[Char]
- Definition Classes
- Iterator
-
def
takeWhile(p: (Char) ⇒ Boolean): Iterator[Char]
- Definition Classes
- Iterator
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Char, Col[Char]]): Col[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toArray[B >: Char](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: Char]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIndexedSeq: IndexedSeq[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[Char]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toList: List[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[Char, (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSet[B >: Char]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: Stream[Char]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- Iterator → AnyRef → Any
-
def
toTraversable: Traversable[Char]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
toVector: Vector[Char]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withFilter(p: (Char) ⇒ Boolean): Iterator[Char]
- Definition Classes
- Iterator
-
def
zip[B](that: Iterator[B]): Iterator[(Char, B)]
- Definition Classes
- Iterator
-
def
zipAll[B, A1 >: Char, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
- Definition Classes
- Iterator
-
def
zipWithIndex: Iterator[(Char, Int)]
- Definition Classes
- Iterator