Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/statsd/statsd
/ decrement
Method
decrement
examples/StatsdClient.java:125–127 ·
view source on GitHub ↗
(String key)
Source
from the content-addressed store, hash-verified
123
}
124
125
public
boolean decrement(String key) {
126
return
increment(key, -1, 1.0);
127
}
128
129
public
boolean decrement(String key,
int
magnitude) {
130
return
decrement(key, magnitude, 1.0);
Callers
nothing calls this directly
Calls
1
increment
Method · 0.95
Tested by
no test coverage detected