-
-
Notifications
You must be signed in to change notification settings - Fork 13
raw mode? #17
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Backlog
In order to get key + value we use entries which are an array of
[key,val]. However, allocating an array for each key value pair is slow. Would be nice if we could somehow return a flattened array withkey = xs[idx * 2 + 0], val = xs[idx * 2 + 1]and avoid O(n) array allocations.