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
override def filter(p: Symbol => Boolean): Scope = (
val filtered = toList filter p
if (filtered.size == toList.size) this
else newScopeWith(filtered: _*)
)
If this looks good, I'd like take this one to play with latest perf_tester.
may iterate the list twice, and perform functions of known results (those previously examined)
note - toList is already cached
The text was updated successfully, but these errors were encountered: