You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AtomFilter has a method: Iterator filter(Iterator), but this causes some messy code downstream.
Ideally, it should instead be Iterable filter(Iterable). Then we can use foreach loops and not have to hold the Iterator while working with it.
AtomFilter has a method: Iterator filter(Iterator), but this causes some messy code downstream.
Ideally, it should instead be Iterable filter(Iterable). Then we can use foreach loops and not have to hold the Iterator while working with it.