Counters
Functions
current
function current(Counter storage counter) internal view returns (uint256);
increment
function increment(Counter storage counter) internal;
decrement
function decrement(Counter storage counter) internal;
Structs
Counter
struct Counter {
uint256 _value;
}