multiply method

void multiply(
  1. Element x,
  2. Element y
)

Multiply sets v = x * y, and returns v.

Implementation

void multiply(Element x, Element y) {
  feMulGeneric(x, y);
}