bench: Add test for map() vs inplace operations in array-likes.
map() is 5 times slower. That's mostly because of inefficiency of creating containers from iterables of unknown length (like map()).
Please register or sign in to comment
map() is 5 times slower. That's mostly because of inefficiency of creating containers from iterables of unknown length (like map()).