subtract method

  1. @override
SignalInt32x4 subtract(
  1. SignalInt32x4 other
)
override

Subtract all entries with other entries.

Implementation

@override
SignalInt32x4 subtract(SignalInt32x4 other) {
  var destiny = SignalInt32x4(capacity);
  subtractTo(other, destiny);
  return destiny;
}