Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zip two typed lists into MapEntry map entries? #12

Open
vincevargadev opened this issue Sep 19, 2023 · 1 comment
Open

Zip two typed lists into MapEntry map entries? #12

vincevargadev opened this issue Sep 19, 2023 · 1 comment

Comments

@vincevargadev
Copy link
Member

extension ZipWith<T> on List<T> {
  Iterable<MapEntry<T, V>> zipWith<V>(List<V> other) sync* {
    assert(other.length == length);
    for (var i = 0; i < length; i++) {
      yield MapEntry(this[i], other[i]);
    }
  }
}
@vincevargadev
Copy link
Member Author

Or zip into Pair? Zip into tuple? Zip into list with two dynamic elements?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant