Packages

object CloseableIterator

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CloseableIterator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class CloseableIteratorBuilder[A] extends Builder[A, CloseableIterator[A]]
  2. implicit class IterableConstruction[+A] extends AnyRef
  3. implicit class IteratorConstruction[+A] extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def CloseableIteratorCanBuildFrom[A]: CanBuildFrom[Iterable[_ <: A], A, CloseableIterator[A]]
  5. implicit def CloseableIteratorCanBuildFromOther[A]: CanBuildFrom[CloseableIterator[_], A, CloseableIterator[A]]
  6. def apply[A](iterator: Iterator[A], closeable: Closeable): CloseableIterator[A]

    Construct a $closeableIterator that iterates over the given iterator and closes the given resource.

    Construct a $closeableIterator that iterates over the given iterator and closes the given resource.

    iterator

    the underlying $iterator over which the $closeableIterator will iterate

    closeable

    the resource to which the $close call will be delegated

  7. def apply[A](iterator: Iterator[A], closeable: AnyRef { def close(): Unit }): CloseableIterator[A]

    Construct a $closeableIterator that iterates over the given iterator and closes the given resource.

    Construct a $closeableIterator that iterates over the given iterator and closes the given resource. Note that instances created with this method will invoke the $close method via reflection. Where possible, use the apply method that accepts a $closeable.

    iterator

    the underlying $iterator over which the $closeableIterator will iterate

    closeable

    an object that exposes a close() method which will be invoked when the $closeableIterator is closed.

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  24. def withoutResource[A](iterator: Iterator[A]): CloseableIterator[A]

    Construct a $closeableIterator that iterates over the given iterator, with a no-op implementation of the $close method.

    Construct a $closeableIterator that iterates over the given iterator, with a no-op implementation of the $close method.

    iterator

    the underlying $iterator over which the $closeableIterator will iterate

Inherited from AnyRef

Inherited from Any

Ungrouped