( slotOffset: number, pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, thisArg?: any, )
| 129 | * @codeGenApi |
| 130 | */ |
| 131 | export function ɵɵpureFunction4( |
| 132 | slotOffset: number, |
| 133 | pureFn: (v1: any, v2: any, v3: any, v4: any) => any, |
| 134 | exp1: any, |
| 135 | exp2: any, |
| 136 | exp3: any, |
| 137 | exp4: any, |
| 138 | thisArg?: any, |
| 139 | ): any { |
| 140 | return pureFunction4Internal( |
| 141 | getLView(), |
| 142 | getBindingRoot(), |
| 143 | slotOffset, |
| 144 | pureFn, |
| 145 | exp1, |
| 146 | exp2, |
| 147 | exp3, |
| 148 | exp4, |
| 149 | ); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * If the value of any provided exp has changed, calls the pure function to return |
nothing calls this directly
no test coverage detected
searching dependent graphs…