...
Code Block |
---|
... cache ( _out.KeyVal, if (_cacheValue == _NULL, $currentValue = 0 , // else $currentValue = _cacheValue ), $currentValue = $currentValue + _out.CashValue, $currentValue ) ... |
...
Code Block |
---|
... $currentValue = cache(_out.KeyVal), if ($currentValue == _NULL, cache(_out.KeyVal, _out.CashValue) , // else cache(_out.KeyVal, $currentValue + _out.CashValue) ), ... |
Syntax
cache(cache key, expression1, expression2, [,..., expressionN])
...