|
|
|
|
|
by oconnor0
3334 days ago
|
|
Using a sequence instead of a map is fine if you know it will never be more than some small number of entries, but so often we are wrong about how many entries will be in a table that the N-squared use of a sequence as a map kills performance unexpectedly. |
|