Traversal

overflowdb.traversal.Traversal$
See theTraversal companion class
object Traversal extends IterableFactory[Traversal]

Attributes

Companion:
class
Graph
Supertypes
trait IterableFactory[Traversal]
trait Serializable
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

def apply[A](iterable: IterableOnce[A]): Traversal[A]
def apply[A](iterable: Iterator[A]): Traversal[A]
override def empty[A]: Traversal[A]

Attributes

Definition Classes
IterableFactory
override def from[A](iterable: IterableOnce[A]): Traversal[A]

Attributes

Definition Classes
IterableFactory
def fromSingle[A](a: A): Traversal[A]
override def newBuilder[A]: Builder[A, Traversal[A]]

Attributes

Definition Classes
IterableFactory

Inherited methods

def apply[A](elems: A*): CC[A]

Attributes

Inherited from:
IterableFactory
def concat[A](xss: Iterable[A]*): CC[A]

Attributes

Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(elem: => A): CC[CC[CC[CC[CC[A]]]]]

Attributes

Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int, n4: Int)(elem: => A): CC[CC[CC[CC[A]]]]

Attributes

Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int, n3: Int)(elem: => A): CC[CC[CC[A]]]

Attributes

Inherited from:
IterableFactory
def fill[A](n1: Int, n2: Int)(elem: => A): CC[CC[A]]

Attributes

Inherited from:
IterableFactory
def fill[A](n: Int)(elem: => A): CC[A]

Attributes

Inherited from:
IterableFactory
def iterate[A](start: A, len: Int)(f: A => A): CC[A]

Attributes

Inherited from:
IterableFactory
def range[A : Integral](start: A, end: A, step: A): CC[A]

Attributes

Inherited from:
IterableFactory
def range[A : Integral](start: A, end: A): CC[A]

Attributes

Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int, n5: Int)(f: (Int, Int, Int, Int, Int) => A): CC[CC[CC[CC[CC[A]]]]]

Attributes

Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int, n4: Int)(f: (Int, Int, Int, Int) => A): CC[CC[CC[CC[A]]]]

Attributes

Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int, n3: Int)(f: (Int, Int, Int) => A): CC[CC[CC[A]]]

Attributes

Inherited from:
IterableFactory
def tabulate[A](n1: Int, n2: Int)(f: (Int, Int) => A): CC[CC[A]]

Attributes

Inherited from:
IterableFactory
def tabulate[A](n: Int)(f: Int => A): CC[A]

Attributes

Inherited from:
IterableFactory
def unfold[A, S](init: S)(f: S => Option[(A, S)]): CC[A]

Attributes

Inherited from:
IterableFactory

Implicits

Inherited implicits

implicit def iterableFactory[A]: Factory[A, CC[A]]

Attributes

Inherited from:
IterableFactory