On 12/12/22 8:45 PM, Steven Schveighoffer wrote:
> for(auto r = aa.byKey, auto k = r.front; !r.empty; r.popFront)
err... forgot the continual front assignment
I think it's more like:
for(auto r = aa.byKey; !r.empty; r.popFront) {
    auto k = r.front;
    // foreach body
}
-Steve