Fill entries with keys [start,limit).
| 56 | |
| 57 | // Fill entries with keys [start,limit). |
| 58 | void Fill(NumMap* map, int64 start, int64 limit) { |
| 59 | for (int64 i = start; i < limit; i++) { |
| 60 | map->insert({i, i * 100}); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | TEST(FlatMapTest, Find) { |
| 65 | NumMap map; |
no test coverage detected