* Get the `AbstractControl` at the given `index` in the array. * * @param index Index in the array to retrieve the control. If `index` is negative, it will wrap * around from the back, and if index is greatly negative (less than `-length`), the result is * undefined. This behavior is
(index: number)
| 166 | * undefined. This behavior is the same as `Array.at(index)`. |
| 167 | */ |
| 168 | at(index: number): ɵTypedOrUntyped<TControl, TControl, AbstractControl<any>> { |
| 169 | return (this.controls as any)[this._adjustIndex(index)]; |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Insert a new `AbstractControl` at the end of the array. |