xyz.wiedenhoeft.scalacrypt.iteratees

Iteratee

object Iteratee

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Iteratee
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def cont[E, A](folder: (Input[E]) ⇒ Iteratee[E, A]): Iteratee[E, A] { val state: xyz.wiedenhoeft.scalacrypt.iteratees.Cont[E,A] }

    Returns an Iteratee in the Cont state.

  9. def done[E, A](result: A): Iteratee[E, A] { val state: xyz.wiedenhoeft.scalacrypt.iteratees.Done[E,A] }

    Returns an iteratee that is already in the Done state with the given result.

  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  12. def error[E, A](error: Throwable): Iteratee[E, A] { val state: xyz.wiedenhoeft.scalacrypt.iteratees.Error[E,A] }

    Returns an iteratee that is in the Error state.

  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def fold[E, A](initial: A)(folder: (A, E) ⇒ Try[A]): Iteratee[E, A]

    Create a new iteratee that uses its result type as a state that is passed to its folder.

    Create a new iteratee that uses its result type as a state that is passed to its folder.

    The resulting iteratee ignores empty inputs and results in A only after an EOF. In combination with the map-method this iteratee is sufficient for most purposes.

  15. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped