entryOperationSum method

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

Sum operation (SIMD).

Implementation

@override
Int32x4 entryOperationSum(Int32x4 entry1, Int32x4 entry2) {
  return entry1 + entry2;
}