Trait/Object

basis.collections

Iteratee

Related Docs: object Iteratee | package collections

Permalink

trait Iteratee[-I, +O] extends AnyRef

Source
Iteratee.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Iteratee
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def feed(input: Iterator[I]): Iteratee[I, O]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *>[P](that: Iteratee[O, P]): Iteratee[I, P]

    Permalink
  4. def <~[J <: I](that: Iteratee[J, Any]): Iteratee[J, O]

    Permalink
  5. def <~>[J <: I, P](that: Iteratee[J, P]): Iteratee[J, (O, P)]

    Permalink
  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def asDone: Iteratee[Any, O]

    Permalink
  8. def asError: Iteratee[Any, Nothing]

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def bind: O

    Permalink
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatMap[J <: I, P](f: (O) ⇒ Iteratee[J, P]): Iteratee[J, P]

    Permalink
  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. def isCont: Boolean

    Permalink
  19. def isDone: Boolean

    Permalink
  20. def isError: Boolean

    Permalink
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def map[P](f: (O) ⇒ P): Iteratee[I, P]

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. def recover[P >: O](pf: PartialFunction[Any, P]): Iteratee[I, P]

    Permalink
  27. def recoverWith[J <: I, P >: O](pf: PartialFunction[Any, Iteratee[J, P]]): Iteratee[J, P]

    Permalink
  28. def run(input: Iterator[I]): Iteratee[I, O]

    Permalink
  29. def state: Maybe[O]

    Permalink
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  32. def trap: Any

    Permalink
  33. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def ~>[J <: I, P](that: Iteratee[J, P]): Iteratee[J, P]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped