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

Function bindingUpdated4

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

Source from the content-addressed store, hash-verified

104
105/** Updates 4 bindings if changed, then returns whether any was updated. */
106export function bindingUpdated4(
107 lView: LView,
108 bindingIndex: number,
109 exp1: any,
110 exp2: any,
111 exp3: any,
112 exp4: any,
113): boolean {
114 const different = bindingUpdated2(lView, bindingIndex, exp1, exp2);
115 return bindingUpdated2(lView, bindingIndex + 2, exp3, exp4) || different;
116}

Callers 10

ɵɵpureFunction5Function · 0.90
ɵɵpureFunction6Function · 0.90
ɵɵpureFunction7Function · 0.90
ɵɵpureFunction8Function · 0.90
pureFunction4InternalFunction · 0.90
interpolation4Function · 0.90
interpolation5Function · 0.90
interpolation6Function · 0.90
interpolation7Function · 0.90
interpolation8Function · 0.90

Calls 1

bindingUpdated2Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…