Lines Matching refs:initialValue
271 static create\<T>(arrayLength: number, initialValue: T): Array\<T>
284 | initialValue | T | Yes | Initial value of each element in the ArkTS array.|
799 …reviousValue: U, currentValue: T, currentIndex: number, array: Array\<T>) => U, initialValue: U): U
812 | initialValue | U | Yes | Initial valu…
1171 extendTo(arrayLength: number, initialValue: T): void
1184 | initialValue | T | Yes | Initial value of the elements to be added.|
3296 reduce(callbackFn: TypedArrayReduceCallback\<number, number, TypedArray>, initialValue: number): nu…
3308 | initialValue | number | Yes | Initial value.|
3335 reduce\<U>(callbackFn: TypedArrayReduceCallback\<U, number, TypedArray>, initialValue: U): U
3348 | initialValue | U | Yes | Initial value.|
3369 … array.reduce<string>((accumulator: string, value: number) => accumulator + value, "initialValue");