extensions/logics/set_extensions library
Extensions for Set operations and utilities.
This library provides expressive, non-mutating set-algebra helpers plus a couple of small conveniences that complement the built-in Set API.
Example usage:
final a = {1, 2, 3};
final b = {2, 3, 4};
a.symmetricDifference(b); // {1, 4}
a.isSubsetOf({1, 2, 3, 4}); // true
Extensions
-
SetExtensions
on Set<
E> - Extensions for Set operations and utilities.