hash[key]++;
int &value = hash[key];if (value == 0) value = 100;else value++;
void shift(IteratorT begin, IteratorT end, int offset){ for (auto& it = begin; it != end; it++) { *it = (*it).addDays(offset * 7); }}