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

Function bindingUpdated3

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

Source from the content-addressed store, hash-verified

92
93/** Updates 3 bindings if changed, then returns whether any was updated. */
94export 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. */
106export function bindingUpdated4(

Callers 4

ɵɵpureFunction7Function · 0.90
pureFunction3InternalFunction · 0.90
interpolation3Function · 0.90
interpolation7Function · 0.90

Calls 2

bindingUpdated2Function · 0.85
bindingUpdatedFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…