Packages

o

akka.stream.scaladsl

ZipLatestWith

object ZipLatestWith extends ZipLatestWithApply

Combine the elements of multiple streams into a stream of combined elements using a combiner function, picking always the latest of the elements of each source. The combined stream completes immediately if some upstreams have already completed while some upstreams did not emitted any value yet. If all upstreams produced some value and the optional parameter eagerComplete is true (default), the combined stream completes when any of the upstreams completes, otherwise, the combined stream will wait for all upstreams to complete.

No element is emitted until at least one element from each Source becomes available. Whenever a new element appears, the zipping function is invoked with a tuple containing the new element and the other last seen elements.

Emits when all of the inputs have at least an element available, and then each time an element becomes available on either of the inputs

Backpressures when downstream backpressures

Completes when any of the upstreams completes

Cancels when downstream cancels

Source
Graph.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZipLatestWith
  2. ZipLatestWithApply
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) => O, eagerComplete: Boolean): ZipLatestWith22[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, O]

    Create a new ZipLatestWith specialized for 22 inputs.

    Create a new ZipLatestWith specialized for 22 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  5. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) => O, eagerComplete: Boolean): ZipLatestWith21[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, O]

    Create a new ZipLatestWith specialized for 21 inputs.

    Create a new ZipLatestWith specialized for 21 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  6. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) => O, eagerComplete: Boolean): ZipLatestWith20[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, O]

    Create a new ZipLatestWith specialized for 20 inputs.

    Create a new ZipLatestWith specialized for 20 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  7. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) => O, eagerComplete: Boolean): ZipLatestWith19[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, O]

    Create a new ZipLatestWith specialized for 19 inputs.

    Create a new ZipLatestWith specialized for 19 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  8. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) => O, eagerComplete: Boolean): ZipLatestWith18[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, O]

    Create a new ZipLatestWith specialized for 18 inputs.

    Create a new ZipLatestWith specialized for 18 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  9. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) => O, eagerComplete: Boolean): ZipLatestWith17[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, O]

    Create a new ZipLatestWith specialized for 17 inputs.

    Create a new ZipLatestWith specialized for 17 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  10. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) => O, eagerComplete: Boolean): ZipLatestWith16[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, O]

    Create a new ZipLatestWith specialized for 16 inputs.

    Create a new ZipLatestWith specialized for 16 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  11. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) => O, eagerComplete: Boolean): ZipLatestWith15[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, O]

    Create a new ZipLatestWith specialized for 15 inputs.

    Create a new ZipLatestWith specialized for 15 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  12. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) => O, eagerComplete: Boolean): ZipLatestWith14[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, O]

    Create a new ZipLatestWith specialized for 14 inputs.

    Create a new ZipLatestWith specialized for 14 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  13. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) => O, eagerComplete: Boolean): ZipLatestWith13[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, O]

    Create a new ZipLatestWith specialized for 13 inputs.

    Create a new ZipLatestWith specialized for 13 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  14. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) => O, eagerComplete: Boolean): ZipLatestWith12[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, O]

    Create a new ZipLatestWith specialized for 12 inputs.

    Create a new ZipLatestWith specialized for 12 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  15. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) => O, eagerComplete: Boolean): ZipLatestWith11[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, O]

    Create a new ZipLatestWith specialized for 11 inputs.

    Create a new ZipLatestWith specialized for 11 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  16. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) => O, eagerComplete: Boolean): ZipLatestWith10[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, O]

    Create a new ZipLatestWith specialized for 10 inputs.

    Create a new ZipLatestWith specialized for 10 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  17. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9) => O, eagerComplete: Boolean): ZipLatestWith9[A1, A2, A3, A4, A5, A6, A7, A8, A9, O]

    Create a new ZipLatestWith specialized for 9 inputs.

    Create a new ZipLatestWith specialized for 9 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  18. def apply[A1, A2, A3, A4, A5, A6, A7, A8, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8) => O, eagerComplete: Boolean): ZipLatestWith8[A1, A2, A3, A4, A5, A6, A7, A8, O]

    Create a new ZipLatestWith specialized for 8 inputs.

    Create a new ZipLatestWith specialized for 8 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  19. def apply[A1, A2, A3, A4, A5, A6, A7, O](zipper: (A1, A2, A3, A4, A5, A6, A7) => O, eagerComplete: Boolean): ZipLatestWith7[A1, A2, A3, A4, A5, A6, A7, O]

    Create a new ZipLatestWith specialized for 7 inputs.

    Create a new ZipLatestWith specialized for 7 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  20. def apply[A1, A2, A3, A4, A5, A6, O](zipper: (A1, A2, A3, A4, A5, A6) => O, eagerComplete: Boolean): ZipLatestWith6[A1, A2, A3, A4, A5, A6, O]

    Create a new ZipLatestWith specialized for 6 inputs.

    Create a new ZipLatestWith specialized for 6 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  21. def apply[A1, A2, A3, A4, A5, O](zipper: (A1, A2, A3, A4, A5) => O, eagerComplete: Boolean): ZipLatestWith5[A1, A2, A3, A4, A5, O]

    Create a new ZipLatestWith specialized for 5 inputs.

    Create a new ZipLatestWith specialized for 5 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  22. def apply[A1, A2, A3, A4, O](zipper: (A1, A2, A3, A4) => O, eagerComplete: Boolean): ZipLatestWith4[A1, A2, A3, A4, O]

    Create a new ZipLatestWith specialized for 4 inputs.

    Create a new ZipLatestWith specialized for 4 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  23. def apply[A1, A2, A3, O](zipper: (A1, A2, A3) => O, eagerComplete: Boolean): ZipLatestWith3[A1, A2, A3, O]

    Create a new ZipLatestWith specialized for 3 inputs.

    Create a new ZipLatestWith specialized for 3 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  24. def apply[A1, A2, O](zipper: (A1, A2) => O, eagerComplete: Boolean): ZipLatestWith2[A1, A2, O]

    Create a new ZipLatestWith specialized for 2 inputs.

    Create a new ZipLatestWith specialized for 2 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  25. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) => O): ZipLatestWith22[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, O]

    Create a new ZipLatestWith specialized for 22 inputs.

    Create a new ZipLatestWith specialized for 22 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  26. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) => O): ZipLatestWith21[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, O]

    Create a new ZipLatestWith specialized for 21 inputs.

    Create a new ZipLatestWith specialized for 21 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  27. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) => O): ZipLatestWith20[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, O]

    Create a new ZipLatestWith specialized for 20 inputs.

    Create a new ZipLatestWith specialized for 20 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  28. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) => O): ZipLatestWith19[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, O]

    Create a new ZipLatestWith specialized for 19 inputs.

    Create a new ZipLatestWith specialized for 19 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  29. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) => O): ZipLatestWith18[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, O]

    Create a new ZipLatestWith specialized for 18 inputs.

    Create a new ZipLatestWith specialized for 18 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  30. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) => O): ZipLatestWith17[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, O]

    Create a new ZipLatestWith specialized for 17 inputs.

    Create a new ZipLatestWith specialized for 17 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  31. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) => O): ZipLatestWith16[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, O]

    Create a new ZipLatestWith specialized for 16 inputs.

    Create a new ZipLatestWith specialized for 16 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  32. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) => O): ZipLatestWith15[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, O]

    Create a new ZipLatestWith specialized for 15 inputs.

    Create a new ZipLatestWith specialized for 15 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  33. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) => O): ZipLatestWith14[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, O]

    Create a new ZipLatestWith specialized for 14 inputs.

    Create a new ZipLatestWith specialized for 14 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  34. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) => O): ZipLatestWith13[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, O]

    Create a new ZipLatestWith specialized for 13 inputs.

    Create a new ZipLatestWith specialized for 13 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  35. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) => O): ZipLatestWith12[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, O]

    Create a new ZipLatestWith specialized for 12 inputs.

    Create a new ZipLatestWith specialized for 12 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  36. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) => O): ZipLatestWith11[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, O]

    Create a new ZipLatestWith specialized for 11 inputs.

    Create a new ZipLatestWith specialized for 11 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  37. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) => O): ZipLatestWith10[A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, O]

    Create a new ZipLatestWith specialized for 10 inputs.

    Create a new ZipLatestWith specialized for 10 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  38. def apply[A1, A2, A3, A4, A5, A6, A7, A8, A9, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8, A9) => O): ZipLatestWith9[A1, A2, A3, A4, A5, A6, A7, A8, A9, O]

    Create a new ZipLatestWith specialized for 9 inputs.

    Create a new ZipLatestWith specialized for 9 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  39. def apply[A1, A2, A3, A4, A5, A6, A7, A8, O](zipper: (A1, A2, A3, A4, A5, A6, A7, A8) => O): ZipLatestWith8[A1, A2, A3, A4, A5, A6, A7, A8, O]

    Create a new ZipLatestWith specialized for 8 inputs.

    Create a new ZipLatestWith specialized for 8 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  40. def apply[A1, A2, A3, A4, A5, A6, A7, O](zipper: (A1, A2, A3, A4, A5, A6, A7) => O): ZipLatestWith7[A1, A2, A3, A4, A5, A6, A7, O]

    Create a new ZipLatestWith specialized for 7 inputs.

    Create a new ZipLatestWith specialized for 7 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  41. def apply[A1, A2, A3, A4, A5, A6, O](zipper: (A1, A2, A3, A4, A5, A6) => O): ZipLatestWith6[A1, A2, A3, A4, A5, A6, O]

    Create a new ZipLatestWith specialized for 6 inputs.

    Create a new ZipLatestWith specialized for 6 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  42. def apply[A1, A2, A3, A4, A5, O](zipper: (A1, A2, A3, A4, A5) => O): ZipLatestWith5[A1, A2, A3, A4, A5, O]

    Create a new ZipLatestWith specialized for 5 inputs.

    Create a new ZipLatestWith specialized for 5 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  43. def apply[A1, A2, A3, A4, O](zipper: (A1, A2, A3, A4) => O): ZipLatestWith4[A1, A2, A3, A4, O]

    Create a new ZipLatestWith specialized for 4 inputs.

    Create a new ZipLatestWith specialized for 4 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  44. def apply[A1, A2, A3, O](zipper: (A1, A2, A3) => O): ZipLatestWith3[A1, A2, A3, O]

    Create a new ZipLatestWith specialized for 3 inputs.

    Create a new ZipLatestWith specialized for 3 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  45. def apply[A1, A2, O](zipper: (A1, A2) => O): ZipLatestWith2[A1, A2, O]

    Create a new ZipLatestWith specialized for 2 inputs.

    Create a new ZipLatestWith specialized for 2 inputs.

    zipper

    zipping-function from the input values to the output value

    Definition Classes
    ZipLatestWithApply
  46. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  47. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  48. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  49. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  50. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  51. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  52. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  53. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  54. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  55. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def toString(): String
    Definition Classes
    AnyRef → Any
  58. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  59. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  60. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ZipLatestWithApply

Inherited from AnyRef

Inherited from Any

Ungrouped