refreshValueFor method
Recalculates indicator's value for the give index and caches it.
Returns the result as a T.
Implementation
T refreshValueFor(int index) {
invalidate(index);
return getValue(index);
}
Recalculates indicator's value for the give index and caches it.
Returns the result as a T.
T refreshValueFor(int index) {
invalidate(index);
return getValue(index);
}