add statefulMapConcat to overview and fix links

This commit is contained in:
Roland Kuhn 2016-02-15 13:03:47 +01:00
parent a83f08d4ab
commit d1b35e441e
13 changed files with 529 additions and 462 deletions

View file

@ -16,7 +16,7 @@ This part also serves as supplementary material for the main body of documentati
open while reading the manual and look for examples demonstrating various streaming concepts
as they appear in the main body of documentation.
If you need a quick reference of the available processing stages used in the recipes see :ref:`stages-overview`.
If you need a quick reference of the available processing stages used in the recipes see :ref:`stages-overview_scala`.
Working with Flows
==================
@ -63,11 +63,11 @@ The function ``limit`` or ``take`` should always be used in conjunction in order
For example, this is best avoided:
.. includecode:: code/docs/stream/cookbook/RecipeSeq.scala#draining-to-seq-unsafe
.. includecode:: ../code/docs/stream/cookbook/RecipeSeq.scala#draining-to-seq-unsafe
Rather, use ``limit`` or ``take`` to ensure that the resulting ``Seq`` will contain only up to ``max`` elements:
.. includecode:: code/docs/stream/cookbook/RecipeSeq.scala#draining-to-seq-safe
.. includecode:: ../code/docs/stream/cookbook/RecipeSeq.scala#draining-to-seq-safe
Calculating the digest of a ByteString stream
---------------------------------------------