Hi there, I'm wondering if a reset function can be added to the Counters library. In certain scenarios, a counter can reach a limit and needs to get reset to start all over again. It would be great if this functionality can be built in. A possible implementation is:
function reset(Counter storage counter) internal {
    counter._value = 0;
}