Files
swift-mirror/stdlib/stdlib.docc/asyncthrowingstream.md
Graham Lee 9ead8781d4 Add .docc catalog to publish stdlib docs on swift.org
Co-authored-by: Alex Martini <amartini@apple.com>
Co-authored-by: Graham Lee <glee23@apple.com>
Co-authored-by: Chris Adamson <cadamson@apple.com>
Co-authored-by: Kirby Turner <kirby_turner@apple.com>
Co-authored-by: Paris Pinkney <ppinkney@apple.com>
Co-authored-by: Dave Spector <dspector@apple.com>
Co-authored-by: Sofia Rodriguez Morales <sofia_rodriguez@apple.com>
Co-authored-by: Ethan Kusters <ekusters@apple.com>
Co-authored-by: Goli Mohammadi <g_mohammadi@apple.com>
Co-authored-by: Adora Vaz <a_vaz@apple.com>
Co-authored-by: David Rönnqvist <ronnqvist@apple.com>
Co-authored-by: Nate Merseth Cook <natecook@apple.com>
Co-authored-by: Susan Conant <susan_c@apple.com>
2026-04-10 10:04:56 -04:00

1.4 KiB

Swift/AsyncThrowingStream

Topics

Creating a Continuation-Based Stream

  • Swift/AsyncThrowingStream/init(_:bufferingPolicy:_:)
  • Swift/AsyncThrowingStream/Continuation/BufferingPolicy
  • Swift/AsyncThrowingStream/Continuation

Finding Elements

  • Swift/AsyncThrowingStream/contains(_:)
  • Swift/AsyncThrowingStream/contains(where:)
  • Swift/AsyncThrowingStream/allSatisfy(_:)
  • Swift/AsyncThrowingStream/first(where:)
  • Swift/AsyncThrowingStream/min()
  • Swift/AsyncThrowingStream/min(by:)
  • Swift/AsyncThrowingStream/max()
  • Swift/AsyncThrowingStream/max(by:)

Selecting Elements

  • Swift/AsyncThrowingStream/prefix(_:)
  • Swift/AsyncThrowingStream/prefix(while:)

Excluding Elements

  • Swift/AsyncThrowingStream/dropFirst(_:)
  • Swift/AsyncThrowingStream/drop(while:)
  • Swift/AsyncThrowingStream/filter(_:)

Transforming a Sequence

  • Swift/AsyncThrowingStream/map(_:)-4a4ke
  • Swift/AsyncThrowingStream/map(_:)-58nrj
  • Swift/AsyncThrowingStream/compactMap(_:)-7mgih
  • Swift/AsyncThrowingStream/compactMap(_:)-944nt
  • Swift/AsyncThrowingStream/flatMap(_:)-vhin
  • Swift/AsyncThrowingStream/reduce(_:_:)
  • Swift/AsyncThrowingStream/reduce(into:_:)

Creating an Iterator

  • Swift/AsyncThrowingStream/makeAsyncIterator()
  • Swift/AsyncThrowingStream/Iterator