final class TraversalFilterExt[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TraversalFilterExt
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TraversalFilterExt(iterator: Iterator[A])
Type Members
- type Traversal[A] = Iterator[A]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def is[B >: A](value: B): Traversal[A]
filters out everything that is _not_ the given value
filters out everything that is _not_ the given value
- Annotations
- @Doc()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val iterator: Iterator[A]
- def toString(): String
- Definition Classes
- Any
- def within[B >: A](values: Set[B]): Traversal[A]
filters out all elements that are _not_ in the provided set
filters out all elements that are _not_ in the provided set
- Annotations
- @Doc()
- def without[B >: A](values: Set[B]): Traversal[A]
filters out all elements that _are_ in the provided set
filters out all elements that _are_ in the provided set
- Annotations
- @Doc()