MCPcopy Index your code
hub / github.com/angular/angular / bindingUpdated2

Function bindingUpdated2

packages/core/src/render3/bindings.ts:88–91  ·  view source on GitHub ↗
(lView: LView, bindingIndex: number, exp1: any, exp2: any)

Source from the content-addressed store, hash-verified

86
87/** Updates 2 bindings if changed, then returns whether either was updated. */
88export function bindingUpdated2(lView: LView, bindingIndex: number, exp1: any, exp2: any): boolean {
89 const different = bindingUpdated(lView, bindingIndex, exp1);
90 return bindingUpdated(lView, bindingIndex + 1, exp2) || different;
91}
92
93/** Updates 3 bindings if changed, then returns whether any was updated. */
94export function bindingUpdated3(

Callers 6

ɵɵpureFunction6Function · 0.90
pureFunction2InternalFunction · 0.90
interpolation2Function · 0.90
interpolation6Function · 0.90
bindingUpdated3Function · 0.85
bindingUpdated4Function · 0.85

Calls 1

bindingUpdatedFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…