bumpSumUnbounded function
Common bump functions Adds the incoming value to the peer's score.
Implementation
/// Adds the incoming value to the peer's score.
BumpFn bumpSumUnbounded() {
return (value, delta) => value.value + delta;
}
Common bump functions Adds the incoming value to the peer's score.
/// Adds the incoming value to the peer's score.
BumpFn bumpSumUnbounded() {
return (value, delta) => value.value + delta;
}