entryOperationMultiply method

  1. @override
Int32x4 entryOperationMultiply(
  1. Int32x4 entry1,
  2. Int32x4 entry2
)
override

Multiply operation (SIMD).

Implementation

@override
Int32x4 entryOperationMultiply(Int32x4 entry1, Int32x4 entry2) {
  return entry1 * entry2;
}