pmap

Parallel map function for Dart

BSD-3-CLAUSE License

Stars
5
Committers
2

pmap

Description

A parallel implementation of Iterable.map. This is a convenient function to help parallelize expensive operations.

Example

import 'package:pmap/pmap.dart';

int square(int x) => x * x;

void main() async {
  final foo = Iterable<int>.generate(100);
  final results = foo.mapParallel(square, parallel: 2);
  await results.forEach(print);
}
Package Rankings
Top 22.66% on Pub.dev