$u method
Implementation
Set<V> $u(Set<V>? a, Set<V>? r) {
Set<V> result = toSet();
if (a?.isNotEmpty ?? false) {
result = result.followedBy(a!).toSet();
}
if (r?.isNotEmpty ?? false) {
result = result.where((i) => !r!.contains(i)).toSet();
}
return result;
}