method Float16Array.every
Jump to headingFloat16Array.every(predicate: () => unknown,thisArg?: any,): booleanDetermines whether all the members of an array satisfy the specified test.
Parameters Jump to heading
Jump to headingpredicate: () => unknownA function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
optional
Jump to headingthisArg: anyAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
Return Type Jump to heading
boolean