( lView: LView, bindingIndex: number, exp1: any, exp2: any, exp3: any, )
| 92 | |
| 93 | /** Updates 3 bindings if changed, then returns whether any was updated. */ |
| 94 | export function bindingUpdated3( |
| 95 | lView: LView, |
| 96 | bindingIndex: number, |
| 97 | exp1: any, |
| 98 | exp2: any, |
| 99 | exp3: any, |
| 100 | ): boolean { |
| 101 | const different = bindingUpdated2(lView, bindingIndex, exp1, exp2); |
| 102 | return bindingUpdated(lView, bindingIndex + 2, exp3) || different; |
| 103 | } |
| 104 | |
| 105 | /** Updates 4 bindings if changed, then returns whether any was updated. */ |
| 106 | export function bindingUpdated4( |
no test coverage detected
searching dependent graphs…