abstract
class
NodeInputStream[N] extends Iterator[N]
Instance Constructors
-
new
NodeInputStream()
Abstract Value Members
-
abstract
def
hasNext: Boolean
-
abstract
def
next(): N
Concrete Value Members
-
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
-
-
def
/:[B](z: B)(op: (B, N) ⇒ B): B
-
def
:\[B](z: B)(op: (N, B) ⇒ B): B
-
-
final
def
==(arg0: Any): Boolean
-
-
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
-
def
aggregate[B](z: B)(seqop: (B, N) ⇒ B, combop: (B, B) ⇒ B): B
-
final
def
asInstanceOf[T0]: T0
-
def
buffered: BufferedIterator[N]
-
def
clone(): AnyRef
-
-
-
def
contains(elem: Any): Boolean
-
def
copyToArray[B >: N](xs: Array[B], start: Int, len: Int): Unit
-
def
copyToArray[B >: N](xs: Array[B]): Unit
-
def
copyToArray[B >: N](xs: Array[B], start: Int): Unit
-
def
copyToBuffer[B >: N](dest: Buffer[B]): Unit
-
-
def
count(p: (N) ⇒ Boolean): Int
-
-
-
-
-
-
-
-
-
-
-
-
-
def
finalize(): Unit
-
-
-
def
fold[A1 >: N](z: A1)(op: (A1, A1) ⇒ A1): A1
-
def
foldLeft[B](z: B)(op: (B, N) ⇒ B): B
-
def
foldRight[B](z: B)(op: (N, B) ⇒ B): B
-
-
def
foreach[U](f: (N) ⇒ U): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
-
def
hasDefiniteSize: Boolean
-
def
hashCode(): Int
-
def
indexOf[B >: N](elem: B): Int
-
def
indexWhere(p: (N) ⇒ Boolean): Int
-
-
final
def
isInstanceOf[T0]: Boolean
-
def
isTraversableAgain: Boolean
-
def
length: Int
-
def
map[B](f: (N) ⇒ B): Iterator[B]
-
def
max[B >: N](implicit cmp: Ordering[B]): N
-
def
maxBy[B](f: (N) ⇒ B)(implicit cmp: Ordering[B]): N
-
def
min[B >: N](implicit cmp: Ordering[B]): N
-
def
minBy[B](f: (N) ⇒ B)(implicit cmp: Ordering[B]): N
-
def
mkString: String
-
def
mkString(sep: String): String
-
def
mkString(start: String, sep: String, end: String): String
-
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
padTo[A1 >: N](len: Int, elem: A1): Iterator[A1]
-
-
def
patch[B >: N](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
-
def
product[B >: N](implicit num: Numeric[B]): B
-
def
reduce[A1 >: N](op: (A1, A1) ⇒ A1): A1
-
def
reduceLeft[B >: N](op: (B, N) ⇒ B): B
-
def
reduceLeftOption[B >: N](op: (B, N) ⇒ B): Option[B]
-
def
reduceOption[A1 >: N](op: (A1, A1) ⇒ A1): Option[A1]
-
def
reduceRight[B >: N](op: (N, B) ⇒ B): B
-
def
reduceRightOption[B >: N](op: (N, B) ⇒ B): Option[B]
-
def
reversed: List[N]
-
-
def
scanLeft[B](z: B)(op: (B, N) ⇒ B): Iterator[B]
-
def
scanRight[B](z: B)(op: (N, B) ⇒ B): Iterator[B]
-
-
def
size: Int
-
def
slice(from: Int, until: Int): Iterator[N]
-
-
-
def
sum[B >: N](implicit num: Numeric[B]): B
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
-
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, N, Col[N]]): Col[N]
-
def
toArray[B >: N](implicit arg0: ClassTag[B]): Array[B]
-
def
toBuffer[B >: N]: Buffer[B]
-
def
toIndexedSeq: IndexedSeq[N]
-
def
toIterable: Iterable[N]
-
def
toIterator: Iterator[N]
-
def
toList: List[N]
-
def
toMap[T, U](implicit ev: <:<[N, (T, U)]): Map[T, U]
-
def
toSeq: Seq[N]
-
def
toSet[B >: N]: Set[B]
-
def
toStream: Stream[N]
-
def
toString(): String
-
-
def
toVector: Vector[N]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
-
-
def
zipAll[B, A1 >: N, B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
-
def
zipWithIndex: Iterator[(N, Int)]
-
Shadowed Implicit Value Members
-
-
-
-
val
self: Any
-
val
self: Any
-
Deprecated Value Members
-
def
/:\[A1 >: N](z: A1)(op: (A1, A1) ⇒ A1): A1
-
-
Inherited by implicit conversion MonadOps from
NodeInputStream[N] to MonadOps[N]
Inherited by implicit conversion alternateImplicit from
NodeInputStream[N] to ForceImplicitAmbiguity
This abstract class is to be used to construct a concrete node input stream that may be passed to the
from
factory method of aGraph
companion object.type of nodes to be passed to a
Graph
factory method from this stream that will be the return type ofnext
.