1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/utils/list_utils.dart

37 lines
802 B
Dart
Raw Normal View History

/// List utilities
///
/// @author Pierre HUBERT
2019-04-24 15:46:25 +00:00
/// Transform a list of dynamic thins into something a list of ints
List<int> listToIntList(List<dynamic> srcList) {
List<int> list = List();
srcList.forEach((e) {
list.add(int.parse(e));
});
return list;
2019-04-25 06:56:16 +00:00
}
/// Find the list of missing elements of a [testList] from a [srcList]
List<T> findMissingFromList<T>(List<T> srcList, List<T> testList) {
2019-04-25 06:56:16 +00:00
List<T> dest = List();
testList.forEach((f) {
if (!srcList.contains(f) && !dest.contains(f)) dest.add(f);
2019-04-25 06:56:16 +00:00
});
return dest;
}
/// Find the list of missing elements of a [testList] from a [srcList]
Set<T> findMissingFromSet<T>(Set<T> srcList, Set<T> testList) {
Set<T> dest = Set();
testList.forEach((f) {
if (!srcList.contains(f)) dest.add(f);
});
return dest;
}