Source

silex.Source
See theSource companion object
trait Source[Character, Position] extends Iterator[Character]

Represents iterators with Positions and ability to mark points and reset to them.

Attributes

Companion
object
Graph
Supertypes
trait Iterator[Character]
trait IterableOnceOps[Character, Iterator, Iterator[Character]]
trait IterableOnce[Character]
class Object
trait Matchable
class Any
Show all
Known subtypes
class ArraySource[Character, Position]
class IteratorSource[Character, Position]
class ReaderSource[Position]
class StringSource[Position]

Members list

Type members

Inherited classlikes

class GroupedIterator[B >: A](self: Iterator[B], size: Int, step: Int)

Attributes

Inherited from:
Iterator
Supertypes
class AbstractIterator[Seq[B]]
trait Iterator[Seq[B]]
trait IterableOnceOps[Seq[B], Iterator, Iterator[Seq[B]]]
trait IterableOnce[Seq[B]]
class Object
trait Matchable
class Any
Show all

Value members

Abstract methods

def commit(): (Position, Iterable[Character], Position)

Returns the marked content since last commit.

Returns the marked content since last commit.

Attributes

def currentPosition: Position

Current position.

Current position.

Attributes

def mark(): Unit

Marks the current point.

Marks the current point.

Attributes

def reset(): Unit

Reset to the last marked point.

Reset to the last marked point.

Attributes

Concrete methods

def close(): Unit

Closes the source.

Closes the source.

Attributes

override def finalize(): Unit

Called by the garbage collector on the receiver object when there are no more references to the object.

Called by the garbage collector on the receiver object when there are no more references to the object.

The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

Attributes

Note

not specified by SLS as a member of AnyRef

Definition Classes
Object

Inherited methods

final def ++[B >: Character](xs: => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
final def addString(b: StringBuilder): b.type

Attributes

Inherited from:
IterableOnceOps
final def addString(b: StringBuilder, sep: String): b.type

Attributes

Inherited from:
IterableOnceOps
def addString(b: StringBuilder, start: String, sep: String, end: String): b.type

Attributes

Inherited from:
IterableOnceOps
def buffered: BufferedIterator[Character]

Attributes

Inherited from:
Iterator
def collect[B](pf: PartialFunction[Character, B]): Iterator[B]

Attributes

Inherited from:
Iterator
def collectFirst[B](pf: PartialFunction[Character, B]): Option[B]

Attributes

Inherited from:
IterableOnceOps
def concat[B >: Character](xs: => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def contains(elem: Any): Boolean

Attributes

Inherited from:
Iterator
def copyToArray[B >: Character](xs: Array[B], start: Int, len: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: Character](xs: Array[B], start: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: Character](xs: Array[B]): Int

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: (Character, B) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def count(p: Character => Boolean): Int

Attributes

Inherited from:
IterableOnceOps
def distinct: Iterator[Character]

Attributes

Inherited from:
Iterator
def distinctBy[B](f: Character => B): Iterator[Character]

Attributes

Inherited from:
Iterator
def drop(n: Int): Iterator[Character]

Attributes

Inherited from:
Iterator
def dropWhile(p: Character => Boolean): Iterator[Character]

Attributes

Inherited from:
Iterator
def duplicate: (Iterator[Character], Iterator[Character])

Attributes

Inherited from:
Iterator
def exists(p: Character => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def filter(p: Character => Boolean): Iterator[Character]

Attributes

Inherited from:
Iterator
def filterNot(p: Character => Boolean): Iterator[Character]

Attributes

Inherited from:
Iterator
def find(p: Character => Boolean): Option[Character]

Attributes

Inherited from:
IterableOnceOps
def flatMap[B](f: Character => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def flatten[B](implicit ev: Character => IterableOnce[B]): Iterator[B]

Attributes

Inherited from:
Iterator
def fold[A1 >: Character](z: A1)(op: (A1, A1) => A1): A1

Attributes

Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, Character) => B): B

Attributes

Inherited from:
IterableOnceOps
def foldRight[B](z: B)(op: (Character, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def forall(p: Character => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def foreach[U](f: Character => U): Unit

Attributes

Inherited from:
IterableOnceOps
def grouped[B >: Character](size: Int): GroupedIterator[B]

Attributes

Inherited from:
Iterator
def indexOf[B >: Character](elem: B, from: Int): Int

Attributes

Inherited from:
Iterator
def indexOf[B >: Character](elem: B): Int

Attributes

Inherited from:
Iterator
def indexWhere(p: Character => Boolean, from: Int): Int

Attributes

Inherited from:
Iterator
override def isEmpty: Boolean

Attributes

Definition Classes
Iterator -> IterableOnceOps
Inherited from:
Iterator
def isTraversableAgain: Boolean

Attributes

Inherited from:
IterableOnceOps
final def iterator: Iterator[Character]

Attributes

Inherited from:
Iterator
def knownSize: Int

Attributes

Inherited from:
IterableOnce
final def length: Int

Attributes

Inherited from:
Iterator
def map[B](f: Character => B): Iterator[B]

Attributes

Inherited from:
Iterator
def max[B >: Character](implicit ord: Ordering[B]): Character

Attributes

Inherited from:
IterableOnceOps
def maxBy[B](f: Character => B)(implicit ord: Ordering[B]): Character

Attributes

Inherited from:
IterableOnceOps
def maxByOption[B](f: Character => B)(implicit ord: Ordering[B]): Option[Character]

Attributes

Inherited from:
IterableOnceOps
def maxOption[B >: Character](implicit ord: Ordering[B]): Option[Character]

Attributes

Inherited from:
IterableOnceOps
def min[B >: Character](implicit ord: Ordering[B]): Character

Attributes

Inherited from:
IterableOnceOps
def minBy[B](f: Character => B)(implicit ord: Ordering[B]): Character

Attributes

Inherited from:
IterableOnceOps
def minByOption[B](f: Character => B)(implicit ord: Ordering[B]): Option[Character]

Attributes

Inherited from:
IterableOnceOps
def minOption[B >: Character](implicit ord: Ordering[B]): Option[Character]

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

Inherited from:
IterableOnceOps
final def mkString(sep: String): String

Attributes

Inherited from:
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String

Attributes

Inherited from:
IterableOnceOps
def nextOption(): Option[Character]

Attributes

Inherited from:
Iterator
def nonEmpty: Boolean

Attributes

Inherited from:
IterableOnceOps
def padTo[B >: Character](len: Int, elem: B): Iterator[B]

Attributes

Inherited from:
Iterator
def partition(p: Character => Boolean): (Iterator[Character], Iterator[Character])

Attributes

Inherited from:
Iterator
def patch[B >: Character](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]

Attributes

Inherited from:
Iterator
def product[B >: Character](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def reduce[B >: Character](op: (B, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeft[B >: Character](op: (B, Character) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeftOption[B >: Character](op: (B, Character) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceOption[B >: Character](op: (B, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceRight[B >: Character](op: (Character, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceRightOption[B >: Character](op: (Character, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
protected def reversed: Iterable[Character]

Attributes

Inherited from:
IterableOnceOps
def sameElements[B >: Character](that: IterableOnce[B]): Boolean

Attributes

Inherited from:
Iterator
def scanLeft[B](z: B)(op: (B, Character) => B): Iterator[B]

Attributes

Inherited from:
Iterator
def size: Int

Attributes

Inherited from:
IterableOnceOps
def slice(from: Int, until: Int): Iterator[Character]

Attributes

Inherited from:
Iterator
def sliding[B >: Character](size: Int, step: Int): GroupedIterator[B]

Attributes

Inherited from:
Iterator
def span(p: Character => Boolean): (Iterator[Character], Iterator[Character])

Attributes

Inherited from:
Iterator
def splitAt(n: Int): (Iterator[Character], Iterator[Character])

Attributes

Inherited from:
IterableOnceOps
def stepper[S <: Stepper[_]](implicit shape: StepperShape[Character, S]): S

Attributes

Inherited from:
IterableOnce
def sum[B >: Character](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def take(n: Int): Iterator[Character]

Attributes

Inherited from:
Iterator
def takeWhile(p: Character => Boolean): Iterator[Character]

Attributes

Inherited from:
Iterator
override def tapEach[U](f: Character => U): Iterator[Character]

Attributes

Definition Classes
Iterator -> IterableOnceOps
Inherited from:
Iterator
def to[C1](factory: Factory[Character, C1]): C1

Attributes

Inherited from:
IterableOnceOps
def toArray[B >: Character : ClassTag]: Array[B]

Attributes

Inherited from:
IterableOnceOps
final def toBuffer[B >: Character]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps
def toIndexedSeq: IndexedSeq[Character]

Attributes

Inherited from:
IterableOnceOps
def toList: List[Character]

Attributes

Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: Character <:< (K, V)): Map[K, V]

Attributes

Inherited from:
IterableOnceOps
def toSeq: Seq[Character]

Attributes

Inherited from:
IterableOnceOps
def toSet[B >: Character]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString(): String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Iterator -> Any
Inherited from:
Iterator
def toVector: Vector[Character]

Attributes

Inherited from:
IterableOnceOps
def withFilter(p: Character => Boolean): Iterator[Character]

Attributes

Inherited from:
Iterator
def zip[B](that: IterableOnce[B]): Iterator[(Character, B)]

Attributes

Inherited from:
Iterator
def zipAll[A1 >: Character, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]

Attributes

Inherited from:
Iterator
def zipWithIndex: Iterator[(Character, Int)]

Attributes

Inherited from:
Iterator

Inherited and Abstract methods

def hasNext: Boolean

Attributes

Inherited from:
Iterator
def next(): Character

Attributes

Inherited from:
Iterator

Deprecated and Inherited methods

final def /:[B](z: B)(op: (B, Character) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
final def :\[B](z: B)(op: (Character, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
def aggregate[B](z: => B)(seqop: (B, Character) => B, combop: (B, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] For sequential collections, prefer `foldLeft(z)(seqop)`. For parallel collections, use `ParIterableLike#aggregate`.
Inherited from:
IterableOnceOps
final def copyToBuffer[B >: Character](dest: Buffer[B]): Unit

Attributes

Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
final override def hasDefiniteSize: Boolean

Attributes

Deprecated
[Since version 2.13.0] hasDefiniteSize on Iterator is the same as isEmpty
Definition Classes
Iterator -> IterableOnceOps
Inherited from:
Iterator
def scanRight[B](z: B)(op: (Character, B) => B): Iterator[B]

Attributes

Deprecated
[Since version 2.13.0] Call scanRight on an Iterable instead.
Inherited from:
Iterator
def seq: Iterator.this.type

Attributes

Deprecated
[Since version 2.13.0] Iterator.seq always returns the iterator itself
Inherited from:
Iterator
final def toIterator: Iterator[Character]

Attributes

Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
final def toStream: Stream[Character]

Attributes

Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps