0 purchases
powerset
powerset #
Generates the power set of an iterable. Works for infinite
iterables.
Usage #
A simple usage example:
import 'package:powerset/powerset.dart';
main() {
print(powerset([1, 2, 3]));
// prints [[], [1], [2], [1, 2], [3], [1, 3], [2, 3], [1, 2, 3]]
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.