symmetric_difference 1.0.0
symmetric_difference: ^1.0.0 copied to clipboard
symmetric defference library
TODO:
Features #
TODO: Just module which solves the problem of the lack of a built-in symmetric difference in the language
Getting started #
TODO: startin work import package import 'package:symmetric_difference/symmetric_difference.dart'
Usage #
the main functions for the module operation
Set set1 = {1, 2, 4}; Set set2 = {1, 3, 5}; symmetricDifferenceSET(set1, set2); // 2, 4, 3, 5
-- a function for finding unique elements in more than two sets or a list Set set3 = {1, 3, 5, 7}; multiSymmetricDifference([set1, set2, set3]); // 2, 3, 7