Brandt Bucher

Results 233 comments of Brandt Bucher

> AutoMap already goes to great lengths to avoid performing any extra work (allocations, equality comparisons between Python objects, etc.) during element access, and we still only beat Python's dict...

> Is that move (plus AutoMap's subsequent copy of the list) really a bottleneck in real index creation workloads? Another note: if the list copy is shown to be expensive,...

Wow, that *is* expensive. I had no idea it accounted for two-thirds of the total creation time! I'm still wary of the impact on lookup performance, but you *have* convinced...