You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What will be logged—"fully cached" because the if expression uses the cached results for both getting subject.iterable and for getting an iterator for that, "partially cached" because the if expression does not use cached results for the first Get but still remembers results from the iterator, or "uncached" because e.g. the if expression is independent of caching?
The text was updated successfully, but these errors were encountered:
On a rethink, it wouldn't make any sense to do this - I think the if part is "just javascript" and the caching doesn't apply there. If you want the cache, use a binding in the pattern.
Consider the following:
What will be logged—"fully cached" because the
if
expression uses the cached results for both gettingsubject.iterable
and for getting an iterator for that, "partially cached" because theif
expression does not use cached results for the first Get but still remembers results from the iterator, or "uncached" because e.g. theif
expression is independent of caching?The text was updated successfully, but these errors were encountered: