io.dylemma.spac

Splitter

object Splitter

Source
Splitter.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Splitter
  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 consecutiveMatches[In](p: (In) ⇒ Boolean): Splitter[In, Any]

    Create a Splitter that treats consecutive values matching the predicate p as substreams with no particular context value.

    Create a Splitter that treats consecutive values matching the predicate p as substreams with no particular context value. For example, given a matcher like i => i % 2 == 0, a stream like

    1 3 2 2 4 5 6 7 8 10 4 3 1

    could be treated as having three substreams:

    • 2 2 4
    • 6
    • 8 10 4
    In
    p
    returns

  9. def consecutiveMatches[In, Context](matcher: PartialFunction[In, Context]): Splitter[In, Context]

    Create a Splitter that treats consecutive matched values as substreams.

    Create a Splitter that treats consecutive matched values as substreams. For example, given a matcher like { case c if c.isLetter => c }, a stream like

    1 2 3 A B C 4 5 6 D 7 8 E F G H 9

    could be treated as having three substreams, where each substream's "context value" is the first letter in that group (because context is always defined by the beginning of the substream).

    • A B C with context 'A' (between the 3 and 4)
    • D with context 'D' (between the 6 and 7)
    • E F G H with context 'E' (between the 8 and 9)
    In
    Context
    matcher

    A function defining which inputs count as a "match"

    returns

  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
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  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
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. def splitOnMatch[In](p: (In) ⇒ Boolean): Splitter[In, Any]

    Create a splitter that starts a new substream every time the predicate function p returns true for an input.

    Create a splitter that starts a new substream every time the predicate function p returns true for an input. Any inputs passed through before the initial match will be discarded, but every event thereafter will be part of a substream. Context is ignored for substreams from this method - the context type is Any.

    For example, in a stream like 4 3 2 1 2 3 1 2 1 2 3 4, if our predicate was { _ == 1 }, then we'd have a new substream starting from each 1 input.

    • (new context) 1 2 3
    • (new context) 1 2
    • (new context) 1 2 3 4
    In

    The input type

    p

    The predicate function responsible for determining if a new context should start for an input.

    returns

    A splitter that starts a new substream for every input where p(input) == true

  20. def splitOnMatch[In, Context](matcher: PartialFunction[In, Context]): Splitter[In, Context]

    Create a splitter that starts a new substream every time the matcher matches.

    Create a splitter that starts a new substream every time the matcher matches. Any events passed through before the initial match will be discarded, but every event thereafter will be part of a substream. The context for a substream is based on the value returned by the matcher for the event that caused that match.

    For example, in a stream like 4 3 2 1 2 3 1 2 1 2 3 4, if our matcher was { case 1 => "yay" }, then we'd have a new substream with context "yay" every time a 1 came through:

    • (new context: "yay") 1 2 3
    • (new context: "yay") 1 2
    • (new context: "yay") 1 2 3 4
    In

    The input type

    Context

    The extracted context type

    matcher

    A PartialFunction that can extract a context value from inputs

    returns

    A splitter that starts a new substream for every input where matcher.isDefinedAt(input), with a context equal to matcher(input).

  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