TheComet

Results 33 comments of TheComet

Before 7922682, parsing iced.dba failed at the newline between remarks (invalid token). I figured it's probably something related to windows line endings but not entirely sure now

> I don't think that a zero size container should be reporting its capacity as 1. How would you suggest to fix this edgecase?

Adding a ```if (number_of_buckets == 0) { return end(); }``` is probably the best solution. ```number_of_buckets``` is a compile-time constant so the compiler can remove the check. I also don't...