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
perf: avoid unnecessary clone in filter_value_keys
Use std::mem::take instead of cloning values when rebuilding objects.
Since the original value is no longer needed after insertion, we can
take ownership rather than clone, reducing memory allocations.
0 commit comments