TraversalFilterExt

overflowdb.traversal.TraversalFilterExt
final class TraversalFilterExt[A](val iterator: Iterator[A]) extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Type members

Types

type Traversal[A] = Iterator[A]

Value members

Concrete methods

def is[B >: A](value: B): Iterator[A]

filters out everything that is not the given value

filters out everything that is not the given value

Attributes

def within[B >: A](values: Set[B]): Iterator[A]

filters out all elements that are not in the provided set

filters out all elements that are not in the provided set

Attributes

def without[B >: A](values: Set[B]): Iterator[A]

filters out all elements that are in the provided set

filters out all elements that are in the provided set

Attributes

Concrete fields

val iterator: Iterator[A]