Many
oxygen.zio.SparseStreamAggregator.Many
final case class Many[_RawInput, _Output, S[_]](inner: SparseStreamAggregator[_RawInput, _Output])(using seqOps: SeqOps[S]) extends SparseStreamAggregator[_RawInput, S[_Output]]
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Members list
Type members
Inherited types
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Value members
Concrete methods
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Inherited methods
final def *:[RawInput2, Output2](that: SparseStreamAggregator[RawInput2, Output2])(using zipInput: Zip[RawInput2, RawInput], zipOutput: Zip[Output2, Output]): SparseStreamAggregator[zipInput.Out, zipOutput.Out]
Note: When combining multiple aggs, the LHS will be eagerly emitted. This means that if you do (a *: b) *: c
instead of a *: b *: c
(which is the same as a *: (b *: c)
, then you will get errors, because it will be impossible to ever get a c
.
Note: When combining multiple aggs, the LHS will be eagerly emitted. This means that if you do (a *: b) *: c
instead of a *: b *: c
(which is the same as a *: (b *: c)
, then you will get errors, because it will be impossible to ever get a c
.
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
In this article