hopefully fixed chashmaps: scan() infinite loop
Created by: memoryleak47
See issue #35.
The for i in 0..
in the scan method was probably causing the problem, when there was no matching entry.
I think a panic!
is not appropriate for this situation, but still better than an infinite loop. Would returning an Option
break something?