Concept Flow - Pure vs impure pipes
Input value changes?
Yes
Pure Pipe transforms input
Output updated in template
Wait for next change
No input change?
No
Pure Pipe skips transform
Impure Pipe triggers
Transforms input every change detection
Output updated in template
Wait for next change detection
Pure pipes run only when input changes; impure pipes run every change detection cycle.