Just creating this issue instead of a direct PR as I am not sure how the contribution guide is for this repo.
The evdev mappings is using match which is not the most optimized way to lookup (BTree is O(logn)) using a HashMap would be better with faster insertion and deletion times (O(1)).
Let me know if I can contribute to this repository!
Just creating this issue instead of a direct PR as I am not sure how the contribution guide is for this repo.
The evdev mappings is using
matchwhich is not the most optimized way to lookup (BTree is O(logn)) using aHashMapwould be better with faster insertion and deletion times (O(1)).Let me know if I can contribute to this repository!