getWithCache method

T getWithCache()

Implementation

T getWithCache() {
	if (!this._cachedValue.wasInit() || this._isDirty()) {
		this._calc();
	}
	return this._cachedValue.getValue();
}