scalax.transducers

Transducer

trait Transducer[A, B] extends AnyRef

Self Type
Transducer[A, B]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Transducer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply[R](rf: Reducer[B, R]): Reducer[A, R]

Concrete 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. def >>[C](that: Transducer[B, C]): Transducer[A, C]

  7. def andThen[C](that: Transducer[B, C]): Transducer[A, C]

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def collect[C](pf: PartialFunction[B, C]): Transducer[A, C]

  11. def compose[C](that: Transducer[C, A]): Transducer[C, B]

  12. def distinct: Transducer[A, B]

  13. def drop(n: Long): Transducer[A, B]

  14. def dropNth(n: Long): Transducer[A, B]

  15. def dropRight(n: Int)(implicit ct: ClassTag[B]): Transducer[A, B]

  16. def dropWhile(f: (B) ⇒ Boolean): Transducer[A, B]

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

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

    Definition Classes
    AnyRef → Any
  19. def filter(f: (B) ⇒ Boolean): Transducer[A, B]

  20. def filterNot(f: (B) ⇒ Boolean): Transducer[A, B]

  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flatMap[C, F[_]](f: (B) ⇒ F[C])(implicit arg0: AsSource[F]): Transducer[A, C]

  23. def foreach(f: (B) ⇒ Unit): Transducer[A, Unit]

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

    Definition Classes
    AnyRef → Any
  25. def grouped[F[_]](n: Int)(implicit F: AsTarget[F], S: Sized[F]): Transducer[A, F[B]]

  26. def hashCode(): Int

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

    Definition Classes
    Any
  28. def map[C](f: (B) ⇒ C): Transducer[A, C]

  29. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  32. def partition[F[_]](f: (B) ⇒ C forSome {type C <: AnyRef})(implicit F: AsTarget[F], S: Sized[F]): Transducer[A, F[B]]

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

    Definition Classes
    AnyRef
  34. def take(n: Long): Transducer[A, B]

  35. def takeNth(n: Long): Transducer[A, B]

  36. def takeRight(n: Int)(implicit ct: ClassTag[B]): Transducer[A, B]

  37. def takeWhile(f: (B) ⇒ Boolean): Transducer[A, B]

  38. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. def zipWithIndex: Transducer[A, (B, Int)]

Inherited from AnyRef

Inherited from Any

Ungrouped