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