Prelude API
    Preparing search index...

    Function append

    • Creates a generator that yields all values from the source iterable followed by all values from appendValues.

      Type Parameters

      • T
      • U

      Parameters

      • appendValues: Iterable<U>

        The values to append after the source iterable

      Returns (values: Iterable<T>) => Generator<T | U>

      A generator function that takes a source iterable and yields all its values followed by appendValues

      Values from the source iterable followed by values from appendValues