recalculate method

O recalculate(
  1. I input
)

If an output for an input isn't valid anymore, usually because of a state change, this method can be used to recalculate an output for a given input. If you don't want to store the result in the cache, the better method to use would be calculate.

Implementation

O recalculate(I input) {
  return _recalculate(input, _sanitizer(input));
}