Scala Library Documentation
|
|
scala/util/parsing/SimpleTokenizer.scala
]
class
SimpleTokenizer(in : Iterator[Char], delimiters : String)
extends
Iterator[String]Value Summary | |
val
|
tracing : Boolean |
Method Summary | |
def
|
hasNext
: Boolean
Does this iterator provide another element?
|
def
|
next
: String
Returns the next element.
|
Methods inherited from Iterator | |
take, drop, map, append, ++, flatMap, filter, takeWhile, dropWhile, zip, zipWithIndex, foreach, forall, exists, contains, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, buffered, counted, duplicate, copyToArray, copyToBuffer, toList, mkString, mkString, addString |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Value Details |
Method Details |
def
hasNext : Boolean
def
next : String
Scala Library Documentation
|
|