Skip to content

Deprecate tupleNZipped operations #11041

Closed
@julienrf

Description

@julienrf

These operations have been replaced by lazyZip:

// old style
(xs, ys).zipped.map((x, y) => x + y)

// new style
xs.lazyZip(ys).map((x, y) => x + y)

We should deprecate the implicit conversion that makes the zipped operation available.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions