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
OakMap.containsKey currently calls AbstractMap.containsKey which scans the entire map - it's possible to overcome by using zc().get(key) != null , however it will make more sense if OakMap did that on its own
The text was updated successfully, but these errors were encountered:
That would be an excellent and easy part of Hackathon! Adding AbstractMap.containsKey API working using ZeroCopy internals. For more explanations feel free to add questions in this issue.
OakMap.containsKey currently calls AbstractMap.containsKey which scans the entire map - it's possible to overcome by using zc().get(key) != null , however it will make more sense if OakMap did that on its own
The text was updated successfully, but these errors were encountered: