Combines an array of ReadableLikes into a single Readable with the array of values.
An array of ReadableLikes to combine.
A Readable with the combined values.
Combines an array of ReadableLikes into a single Readable with transformed value.
An array of ReadableLikes to combine.
A pure function that takes multiple values and returns a new value.
Optionalconfig:
Config<TValue>
Optional custom Config.
A Readable with the transformed values.
Combine an array of ReadableLikes into a single Readable with transformed value.
Unlike compute, the signature of the
transformfunction is pure, which makes it easier to use functions that are not aware of the reactive system.Param: deps
An array of ReadableLikes to combine.
Param: transform
Optional pure function that takes multiple values and returns a new value.
Param: config
Optional custom Config.
Returns
A OwnedReadable with transformed value.
Example