Skip to content

Latest commit

 

History

History
131 lines (92 loc) · 5.41 KB

File metadata and controls

131 lines (92 loc) · 5.41 KB

Reductions

[ Source | Tests ]

Introduction

The family of algorithms for reduce are useful for converting a sequence or asynchronous sequence into a single value, but that can elide important intermediate information. The reductions algorithm is often called "scan", but this name does not convey its heritage to the family of reducing.

There are two strategies that are usable for creating continuous reductions: exclusive reductions and inclusive reductions:

  • Exclusive reductions take a value and incorporate values into that initial value. A common example is reductions by appending to an array.
  • Inclusive reductions transact only on the values provided. A common example is adding numbers.

Proposed Solution

Exclusive reductions come in two variants: transforming by application, or transformation via mutation. This replicates the same interface as reduce(_:_:) and reduce(into:_:). Unlike the reduce algorithms, the reductions algorithm also comes in two flavors: throwing or non throwing transformations.

extensionAsyncSequence{publicfunc reductions<Result>( _ initial:Result, _ transform:@Sendable@escaping(Result, Element)async->Result)->AsyncExclusiveReductionsSequence<Self,Result> public func reductions<Result>( into initial:Result, _ transform:@Sendable@escaping(inoutResult,Element)async->Void)->AsyncExclusiveReductionsSequence<Self,Result>}extension AsyncSequence { public func reductions<Result>( _ initial:Result, _ transform:@Sendable@escaping(Result, Element)asyncthrows->Result)->AsyncThrowingExclusiveReductionsSequence<Self,Result> public func reductions<Result>( into initial:Result, _ transform:@Sendable@escaping(inoutResult,Element)asyncthrows->Void)->AsyncThrowingExclusiveReductionsSequence<Self,Result>}

These APIs can be used to reduce an initial value progressively or reduce into an initial value via mutation. In practice, a common use case for reductions is to mutate a collection by appending values.

characters.reductions(into:""){ $0.append($1)}

If the characters being produced asynchronously are "a", "b", "c", then the iteration of the reductions is "a", "ab", "abc".

Inclusive reductions do not have an initial value and therefore do not need an additional variations beyond the throwing and non throwing flavors.

extensionAsyncSequence{publicfunc reductions( _ transform:@Sendable@escaping(Element, Element)async->Element)->AsyncInclusiveReductionsSequence<Self> public func reductions( _ transform:@Sendable@escaping(Element, Element)asyncthrows->Element)->AsyncThrowingInclusiveReductionsSequence<Self>}

This is often used for scenarios like a running tally or other similar cases.

numbers.reductions{ $0 + $1 }

In the above example, if the numbers are a sequence of 1, 2, 3, 4, the produced values would be 1, 3, 6, 10.

Detailed Design

The exclusive reduction variants come in two distinct cases: non-throwing and throwing. These both have corresponding types to encompass that throwing behavior.

For non-throwing exclusive reductions, the element type of the sequence is the result of the reduction transform. AsyncExclusiveReductionsSequence will throw if the base asynchronous sequence throws, and will not throw if the base does not throws.

publicstructAsyncExclusiveReductionsSequence<Base:AsyncSequence, Element>{}extensionAsyncExclusiveReductionsSequence:AsyncSequence{publicstructIterator:AsyncIteratorProtocol{publicmutatingfunc next()asyncrethrows->Element?} public func makeAsyncIterator()->Iterator}extensionAsyncExclusiveReductionsSequence:Sendablewhere Base:Sendable, Element:Sendable{}extensionAsyncExclusiveReductionsSequence.Iterator:Sendablewhere Base.AsyncIterator:Sendable, Element:Sendable{}

The sendability behavior of AsyncExclusiveReductionsSequence is such that when the base, base iterator, and element are Sendable then AsyncExclusiveReductionsSequence is Sendable.

publicstructAsyncThrowingExclusiveReductionsSequence<Base:AsyncSequence, Element>{}extensionAsyncThrowingExclusiveReductionsSequence:AsyncSequence{publicstructIterator:AsyncIteratorProtocol{publicmutatingfunc next()asyncthrows->Element?} public func makeAsyncIterator()->Iterator}extensionAsyncThrowingExclusiveReductionsSequence:Sendablewhere Base:Sendable, Element:Sendable{}extensionAsyncThrowingExclusiveReductionsSequence.Iterator:Sendablewhere Base.AsyncIterator:Sendable, Element:Sendable{}

Alternatives Considered

One alternate name for reductions was to name it scan; however the naming from the Swift Algorithms package offers considerably more inference to the heritage of what family of functions this algorithm belongs to.

Credits/Inspiration

This transformation function is a direct analog to the synchronous version defined in the Swift Algorithms package

close